Tagged: ,

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #289253

    Hi,

    I’d like to have a picture at the top of my right sidebar on all pages/posts etc except the front page. How can I accomplish this? I have Jetpack so I could use the Image-widget, but then I need to know how to make sure it displays everywhere except on the front page.

    Thanks in advance for your help!

    #289397

    Hi Welmoed!

    Thank you for using our theme.

    You have to identify the sidebar in HTML Code. This should be a unique class (e.g. sidebar_image) or better id for this section. Maybe the plugin allows you to give a unique id (e.g. my_image)

    You can put the following code in custom.css or Quick CSS field:

    
    .home #my_image {
    display: none !important;
    }
    
    or
    
    .home .sidebar_image{
    display: none !important;
    }
    

    If you have troubles identifying the section, insert the image and come back and we help you.

    Regards,
    Günter

    #292236

    Thanks Günter!

    I tried to find the HTML code, but couldn’t find it… It’s about the logo/picture on the top of the sidebar you see on http://jouwwp.nl/npb/
    Could you help me identifying the section?
    To be clear: the rest of the sidebar should be visible on all pages, it’s just the logo that shouldn’t display on the home page.

    Thanks!

    Welmoed

    #292248

    Hi Welmoed!

    Please add following code to Quick CSS

    .home section#image-2 {
    display: none !important;
    }

    Cheers!
    Yigit

    #292257

    thanks it works!!

    Welmoed

    #292260

    Hey!

    You are welcome Welmoed, glad we could help!

    Cheers!
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Image in sidebar – not on front page’ is closed to new replies.