• Hello there. I wonder if someone could have a look at my website Voice In The Desert and advise me how to remove the grey border/shadow between the sidebar and the main content. I want it to look seamless if possible.

    Thank you so much!

Viewing 1 replies (of 1 total)
  • To remove the border use this code in your CSS:

    @media screen and (min-width: 59.6875em) {
    body:before {
    box-shadow: none;
    }
    }

    Explanation:

    The border to the sidebar is added with :before pseudo-class so you have to remove it on the body and only for the higher resolution (because of that you will use media query).

    If you don’t want to use this in your theme style.css you can use “Modular Custom CSS” plugin that will let you add custom css code to your Twenty Fifteen theme.

    Hope this helps ??

Viewing 1 replies (of 1 total)
  • The topic ‘Remove border/shadow between sidebar and main content’ is closed to new replies.