I’m guessing there is some css I can add in the “custom css” area to eliminate the alternate color linked image effect on a single page (I’m referring to, for example, a feature image within a blog that has by default a color hover on it–or, for that matter, the Enfold banner on this page that has the blue hover). This is for a WP forum (not bbPress) I installed–all profile (avatar) links have the hover and I want to eliminate the effect for just the page the forum is on. Then again, since the forum software produces dynamic pages, I’m not sure if it can be done with the single page ID which the forum is on. But I sure hope so. Thanks.
Hey foreigner!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.single-post .image-overlay {
display: none!important;
}
Cheers!
Yigit
Hi Yigit. Thanks, but that’s not what I’m looking for–I just used the posts as just an example of what I was referring to (image overlay). I want to eliminate the image overlay on just one specific page–where the (non-bbPress) forums are, not any blog pages. I’m guessing I need to add a page ID somewhere (although the forum of course produces dynamic pages).
To sum up: How do I eliminate the image overlay for a specific page?
Thanks!
Hey!
You can use following code instead
.page-id-59 .image-overlay {
display: none!important;
}
You can post the link to your page and we can check if we can provide more accurate code
Cheers!
Yigit
Hi Yigit
That’s what I was looking for–and it seems to have done the trick. Should any problems arise, I’ll be sure to let you know.
Thanks very kindly!