Grey lines suddenly on Homepage

Hi,

I don’t know what happened but suddenly there seems to be a grey line under the entire main menu and under the first two posts on the home page.

I’ve attached screenshots. Please help me remove.

Thank you,
Vanty

Hi Vanty,

Thank you for your questions.

It is the default functionality of theme but you can hid them by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

nav.navbar.navbar-default {
    box-shadow: none;
}
.blog.home #page .post-inner-content {
    border-bottom: 0;
}

Best Regards,
Movin

Awesome! Thanks for the code, it works perfectly!

You are most welcome here :slight_smile:

Hi Movin,

I just realized, these lines also appear on pages and each posts, above and below the category name

Your help will be very much appreciated. I’ve attached screenshots.

Thank you,
Vanty

You can hide them by using the below CSS code.

div.cat-title {
    border-bottom: 0;
}
#masthead #line {
    display: none;
}

Hi Movin,

Thank you!! It works perfectly!

You are most welcome here :slight_smile: