Hello community!
I am using the default moodle Boost theme.
I want to place the Home's (frontpage) logo in center position in header (now fixed in left position) but can't find a way.
Does anyone know how to do it?
Thanks a lot team.
Center logo in Home/frontpage BOOST theme
Number of replies: 2Ang: Center logo in Home/frontpage BOOST theme
I think the following might work, if inserted in custom CSS. I have only tested with my title, as i have removed the logo from my site.
body.pagelayout-frontpage .mr-auto {
margin-right: unset !important;
margin: auto !important;
}
With this you should only target the logo on the frontpage.
body.pagelayout-frontpage .mr-auto {
margin-right: unset !important;
margin: auto !important;
}
With this you should only target the logo on the frontpage.
Re: Ang: Center logo in Home/frontpage BOOST theme
Thanks a lot Preben Pedersen, you're a master...works perfec!
Only one detail! In the mobile version remains on the left, it works perfect in PC version!
Thanks again.