• Resolved jasonjcohn

    (@jasonjcohn)


    I want to have my pages/posts without the grey line underneath the post, just one big area to play with.

    jasonjcohn.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Shaped Pixels

    (@shaped-pixels)

    Hi Jason…I’m assuming you are referring to the shadow?

    The styling that does this is:

    @media (min-width: 68em) {
    .content-area {
        -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,0.2);
        box-shadow: 0 0 30px 0 rgba(0,0,0,0.2);
    }
    }

    You will need to override that with some custom CSS using a plugin like “Simple Custom CSS” and then copy this:

    @media (min-width: 68em) {
    .content-area {
        box-shadow: none;
    }
    }

    NOTE: I just noticed you are using Jetpack, so instead of the Simple Custom CSS plugin, you can turn on the “Custom CSS” feature in Jetpack and use that instead.

    • This reply was modified 8 years, 5 months ago by Shaped Pixels.
    Thread Starter jasonjcohn

    (@jasonjcohn)

    Thank you so much for the speedy reply! It worked straight away, you’re a legend.

    Theme Author Shaped Pixels

    (@shaped-pixels)

    You are very welcome ??
    I’ve set this topic as “Resolved” as it sounds like this one is.

    Cheers,
    Andre

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Removing grey dividing line and footer’ is closed to new replies.