Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1257922

    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

    • This topic was modified 4 years ago by yampieters.
    #1258213

    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

    #1258321

    ok thanks rikard! you can close this ticket now.
    best regards, jelle

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘edit homepage’ is closed to new replies.