Change post background color?

When I go to https://tonyscottgreen.com/music-samples/ and select the first grid box 'ACTION THRILLER FEATURE SCORE" I can see white bars on the top and bottom of the music player that appear to be the background of the page post. How can I change the background color of all posts?

Thanks in advance!

X Pro 3.2.3
Integrity Stack

Hi @mag9000,

Thanks for reaching out.
Please find the screenshots pointing to the section which you mentioned in your question.

Screenshot 1:

If you want to change the color marked in this screenshot, please add the following custom CSS code into the Theme Options > CSS.

.eg-lightbox-post-content
{
    background-color: #ffff00;
}

Screenshot 2:

If you want to change the color marked in this screenshot, please add the following custom CSS code into the Theme Options > CSS.

.esg-grid .mainul li.eg-herbert-hoover-wrapper
{
    background: #9118189c;
    border-color: #892828;
}

Remember that the above code will work if copied as it is and don’t conflict with any existing style.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We do not provide support for custom codes that means we can’t fix it in case it conflicts with something on your site nor will we enhance it.

If that is not the case, and you are trying to change the color of any different section, please provide any screenshot marked with the section to recognize it.

Thanks

Thanks for the prompt reply. Screenshot #1 is the one in question. The white border seems to actually be the white background from the underlying post which is being displayed in lightbox. I added the CSS provided but no change.

Hello @mag9000,

Please have the custom CSS code updated and use this code instead:

.eg-lightbox-post-content,
.eg-lightbox-post-content-inner {
    background-color: #000;
}

Be advised that all the codes given are just sample codes to get you started with what you want to have in mind. It may create issues later on so you will have to be in charge of maintaining the sample codes whenever there are theme and plugin updates.

Best Regards.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.