• i added a border to the bottom inside-article on the main page to seperate the posts but cant figure out how to get it out for single posts

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi there,

    Try this CSS instead so it’s only on the blog page:

    .blog .inside-article {
        border-bottom: solid #000 3px!important;
    }
    Thread Starter hairyp

    (@hairyp)

    thanks

    Thread Starter hairyp

    (@hairyp)

    is there a way to remove the last one on the bottom

    Hmm try this CSS instead:

    article:not(:last-child) {
        border-bottom: solid #000 3px;
    }
    Theme Author Tom

    (@edge22)

    Since you’re targeting the .inside-article element, it would have to be this:

    .blog article:not(:last-child) .inside-article {
        border-bottom: solid #000 3px;
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Inside Article’ is closed to new replies.