how to change lines underneath title of posts on main page

Hi Aigars & Co,

Happy New Year!

Just wondering how to change the line under the title of posts/date on the front page? In particular, I would like to change the color and the decrease the length.

WP: Current
Dazzling: Current
Site: curlyafrodotcom

Thanks in advance,

Hi @4alex,

Happy New Year…!!!

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

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

body.home .page-header {
    border-bottom: 0;
}
body.home .page-header:after {
    content: " ";
    display: block;
    border-bottom: 1px solid #000;
    width: 90%;
}

Change the color and width in the above code to whatever you want to set.

Best Regards,
Movin

Thanks so much Movin,

Worked like a charm!

You are most welcome here :slight_smile: