Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2754880
Website Background Color
Closed

Comments

  • Sarah started the conversation

    I noticed the menu is a different color from the rest of the website. Can you tell me where I can change the website background color? I'd like to change it to white.

    Also is there a way to expand the margins on the desktop for the entire website? I'm interesting in reducing the margins.


    Thanks


  •  2,699
    PenciDesign replied

    Hi,

    1/ Your background image already in white color.

    And you can change it to another color via Customize > General > Colors.

    2/ For the homepage, I see you're using Elementor, so you can change the width for it from Elementor by click on the section and change the it on the box below select "Content Width"

    For other pages, you can try to add more this code to Customize > Custom CSS to do that:

    @media only screen and (min-width: 1400px){
    .container{ width: 1400px; }
    }
    

    Change 2 values 1400 on the above code to value as you want.


    Best Regards,

    PenciDesign

  • Sarah replied

    Thank you. It appears to me that the body of the website and the main navigational menu are two different colors. Or is there a kind of shadow that separates them? Is there a way to make it so it's one color?

  •  2,699
    PenciDesign replied

    Hi,

    Yes, the header style 11 you're using has a box shadow around it.

    If you want to remove it, please try to add more this code to Customize > Custom CSS:

    @media only screen and (min-width: 961px){
    #navigation.header-11 .container {
        box-shadow: none;
        -webkit-box-shadow: none;
        border: 1px solid #eaeaea;
    }
    }
    

    Best Regards,

    PenciDesign