Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #32225
    Clay
    Guest

    Changing the background color of a section in the post and page builder looks just fine, but when the page is updated, the “Wedge” (which isn’t visible in the editor) stays the old color and doesn’t update with the section.

    The wedge color stays the same

    I can’t find any mechanism within the post and page builder to change it.

    Help?

    #32254
    Jesse Owens
    Keymaster

    Hi Clay-

    The colors of the “wedges” are generated by the color palette you find in Customize > Colors. There are three background colors that are created, background-primary, background-secondary, and background-tertiary, and they’ll work as expected if the blocks on the page go in that order.

    All of that being said, Wedge doesn’t play very nicely when you’re using custom background colors for your blocks.

    Taking a look at your site, since all of the blocks are a white background, you could use this Custom CSS rule in your Customize > Advanced > Custom JS & CSS:

    .entry-content .bgtfw .container-fluid::before, .entry-content .bgtfw .container-fluid::after {
        background-color: #fff;
    }
    

    On the other hand, you can also remove the wedges altogether using this rule:

    .entry-content .bgtfw .container-fluid::before,
    .entry-content .bgtfw .container-fluid::after {
    	display: none;
    }
    
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Background color change doesn’t update the “Wedge”’ is closed to new replies.