Do you want you to move the arrow icon back to the left side of the header?
like this?
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header"> <header class="mdl-layout__header"> <button class="mdl-button mdl-js-button mdl-button--icon" onclick="history.go(-1);"> <i class="material-icons">arrow_back</i> </button> <div class="mdl-layout__header-row"> <span class="mdl-layout-title">Settings</span> </div> <div class="mdl-layout__tab-bar mdl-js-ripple-effect"> <a href="{{pathFor route='home'}}" class="mdl-layout__tab">Profile</a> <a href="{{pathFor route='settings'}}" class="mdl-layout__tab">Account</a> </div>
If the icon is in the class "mdl-layout__header-row",
You cannot move the arrow icon backward by setting the fill box.
You will find out if you do Ctrl + Shift + I on the icon.
You can move the back arrow button to the left of "mdl-layout__header-row" to
setting the icon in the "mdl-layout__header" class.
Hope this helps you :)
source share