- AuthorPosts
- September 15, 2020 at 1:08 pm #26987NikGuest
I’m unable to get a totally white background with the Monument theme and not sure where the problem is. I’ve tried selecting no pattern in the customizer as well as trying to manually edit the CSS but to no avail. There is a constant gray striped background behind things, specifically on pages where I don’t have enough blocks to fill the menu size. the problem line is located at:
inline style sheet #8
body.custom-background
background-image:url(https://www. [redacted ].com/wp-content/themes/boldgrid-monument/inc/boldgrid-theme-framework/assets/img/patterns/60-lines.png)When I deactivate that via inspector the gray goes away so I know that’s the problem. What I tried in the Custom Theme CSS is:
.body.custom-background{
background-image: none !important;
background-attachment: scroll !important;
background-color:#ffffff !important;
}But that didn’t do anything. Any help on this would be much appreciated.
September 15, 2020 at 1:32 pm #27012Jesse OwensKeymasterHi Nik-
I checked out the site you sent over privately, and it looks like you’ve solved this pretty creatively by deleting the image file.
Kudos for the solution! But, I would like to warn you that when the theme gets updated the image background will reappear.
It looks like you actually had the code very close to correct, the only problem is the period (.) right before body. You had:
.body.custom-background{ background-image: none !important; background-attachment: scroll !important; background-color:#ffffff !important; }
Instead, try this:
body.custom-background{ background-image: none !important; }
September 17, 2020 at 2:31 pm #27200NikGuestHey Jesse,
Thanks for the update! Noted that the issue will return when the theme updates. I’ll go ahead and add the code you sent. So close.
Thanks again!
September 17, 2020 at 2:55 pm #27221Jesse OwensKeymasterCheers, Nik! Glad to hear it. Let us know if you have any more questions, we’re happy to help.
- AuthorPosts
- The topic ‘Can’t get a true white background with Monument’ is closed to new replies.