hello, ive just managed to edit the background color of only my homepage, in the left menu.
.page-id-2 #header .container_wrap { background: #009de0; !important; }
but , imagine i want to show the logo in the top left corner only on the homepage and not on the rest of the site.
on the rest of the site i want
either
1. no logo and shift the menu upwards
2. of HAVE a logo but a different one
could this be done?
best regards, jelle
Hey jelle,
If you want to hide the logo on all pages except the home page, then you can use CSS like this:
span.logo {
display: none;
}
.home span.logo {
display: block;
}
If you want a different logo then it might be better to set it as a background, then use CSS similar to the example above.
Best regards,
Rikard
ok thanks rikard! you can close this ticket now.
best regards, jelle