[ad_1]
Hi, thanks for reporting this issue!
For now, try adding this in Customize > Additional CSS:
body:where(.dark).boxed #wrapper { background-color: #222; }Remember to clear cache, and if that doesn’t work, you can force-refresh the CSS on the page by pressing CTRL+F5.
Thank you so much for your prompt response!
Your code solved the issue inside of the box, however outer background remains the same (There is white background for the bigger screens).
If I understand well the following code overrides it:
body.boxed { background: #e5e5e5; }
Yup that seem to be overriding it. Try adding this as well:
body:where(.dark).boxed { background-color: #222!important; }Or whatever color you wish the outside to have.
That worked perfectly thank you!
