Tagged: header
Hi guys,
is it possible to have different headers for certain pages? For Example the homepage should have the logo center and on a subpage the logo should be left.
On your demo website I saw that it is possible, but I don’t know where to to do the changes.
Best Regards,
Theo
Hi pixup!
We can give you CSS to use to change the logo position on separate pages. Send us a link to the pages you want to change it on and we’ll take a look.
Best regards,
Elliott
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.html_header_top.html_logo_center .home .logo {
left: 50%;
-webkit-transform: translate(-50%, 0);
-moz-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
.html_header_top.html_logo_center .logo {
left: 0;
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
}
Cheers!
Yigit