Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #26987
    Nik
    Guest

    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.

    #27012
    Jesse Owens
    Keymaster

    Hi 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;
    }
    #27200
    Nik
    Guest

    Hey 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!

    #27221
    Jesse Owens
    Keymaster

    Cheers, Nik! Glad to hear it. Let us know if you have any more questions, we’re happy to help.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Can’t get a true white background with Monument’ is closed to new replies.