Posts icon and padding

Hello,

I managed to hide my page title using CSS, but I still have a thin grey line and too much top padding. Please let me know how to fix that: https://objetivoairelibre.com/aniversario-de-nuestra-vida-nomada/

There’s also a doc icon right before each post title that I’d like to either remove or customize (could I choose a different icon? How?)

Thank you!

Hello @bablingua,

Thanks for writing to us.

You can customize the padding and border by using this custom CSS code under Theme Options

.single .x-header-landmark {
padding: 18px 0;
border: 0px solid #f2f2f2;
} 

Please feel free to change the padding value as per your design.

To remove the icon of the post title you can use this custom code under Theme Option.

.single .entry-title:before{
display:none; 
}

The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector or you can subscribe to One to get further assistance.

Hope it helps.
Thanks

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