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!
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
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
Hi Welmoed!
Please add following code to Quick CSS
.home section#image-2 {
display: none !important;
}
Cheers!
Yigit
thanks it works!!
Welmoed