Hello,
I would be very thankful if you could tell me how I can remove the background image from a single page.
I added some links and the purchase code in the Private Content Box.
Thank you.
Hey fabienneRedUmb,
Do you mean this image:
it looks like it’s adding in your custom css, try looking for this code and remove:
.main_color {
background: #ffffff url(https://rubyrebelde.com/wp-content/uploads/2023/04/bg_pn-495x400.png) bottom right no-repeat fixed;
}
If you can’t find it try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top .main_color {
background: #ffffff;
}
If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.
Best regards,
Mike
Thank you for your answer. I realized I haven’t formulated the questions clearly enough.
The backgroundpicture you found was placed intentionally via the Enfold Option to add a picture to the body background in the theme options.
I would very much like to keep it on ALL pages, BUT the single one I posted you the link to.
How would I adress the picture in such a way that I can remove it only from the first page?
Thank you.
Hi,
Thanks for the update. Please try the following in Quick CSS under Enfold->General Styling:
.home .main_color {
background: none !important;
}
Best regards,
Rikard
Thank you, that did it!