Remove Line at top of Blog Page

How do I remove this?

Hello Samantha,

Thanks for writing in!

Please add following CSS under X > Theme Options > CSS:

.blog .x-main .hentry {
    border-top: 0 !important;
}

1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar: https://www.youtube.com/watch?v=wcFnnxfA70g

2- For the CSS code itself, I suggest that you get started with this tutorial: https://www.youtube.com/watch?v=yfoY53QXEnI

Thanks.

Is there anyway to remove just the absolute top line, and not the lines in between posts?

Hi Samantha,

Please try:

.blog .x-main .hentry:first-child {
    border-top: 0 !important;
}

If the code does not work, please provide the URL to your site.

Thank you.

IT WORKED! Thank you :slight_smile:

Glad to hear that. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.