Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #375553

    Martin L
    Participant

    Hi, I am running WP version 4.3, Child Theme version of X – 1.0.0 and the URL is http://www.dev.theseat.co.uk/cars/

    I want the container to be completely black to match the rest of the site and become invisible and have tried this code:

    .page-id-105 .x-boxed-layout-active .site,
    .page-id-105 .x-container.main:before {
    background-color: #000000;
    }

    but it has not worked. Can you help with this please?

    #375597

    Paul R
    Moderator

    Hi Martin,

    You can try this code instead.

    
    .page-id-105 .x-main.full .entry-wrap {
         background-color:red;
    }
    

    Change red with the color that you like.

    Hope that helps.

    #375702

    Martin L
    Participant

    Hi, thanks for this. I had to do small edit:

    .page-id-105 .x-main.full .entry-wrap {
    background-color: black !important;
    }

    but worked great thank you xx

    #375797

    Darshana
    Moderator

    Glad you were able to figure it out πŸ™‚

    #680932

    Leanna
    Participant

    hi, same as above but I want the container color to match main site bg color on all pages having container layout… I tried this in Custom CSS…

    .x-main.full .entry-wrap {
    background-color: #ececec;
    }

    but it caused an error in the page.

    #680948

    Rue Nel
    Moderator

    He Leanna,

    Thanks for updating this thread! To assist you better with this issue, would you mind providing us the url of your site with login credentials, if necessary, so we can take a closer look? This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

    To do this, you can make a post with the following info:
    – Link to your site

    – WordPress Admin username / password (only if necessary)

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    Thank you.

    #681003

    Leanna
    Participant

    looks like the above has now decided to work but there is still a shadow around the wrapper, plz give me the code to remove.

    Also I want the space between the top of Rev Slider and the menu to be less or zero. Have removed all margins but don’t see any way to get it closer.

    #681008

    Leanna
    Participant
    This reply has been marked as private.
    #681027

    Zeshan
    Member

    Hi Leanna,

    Thanks for writing in!

    To remove the shadow around the content and spacing above the slider, add following CSS under Custom > CSS in the Customizer:

    .x-container.offset {
        margin-top: 11px;
    }
    
    .x-main.full .entry-wrap {
        box-shadow: none;
        padding-top: 0;
    }
    

    Hope this helps. πŸ™‚

    Thank you!

    #681095

    Leanna
    Participant

    worked great, thanks!

    #681148

    Paul R
    Moderator

    You’re welcome! πŸ™‚