Sparkling read-more button

Hallo, I have a problem with sparkling read-more button and with pre-content in post. I don’t know how to center read-more button and i don’t know how to remove pre-content text in blog post. Can you help me please? Thank you

Hi @dominikstoller,

I hope you are well today and thank you for your questions.

You can try centre aligning the read more button by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

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

.entry-content a.btn.btn-default.read-more {
    float: none;
    display: table;
    margin: 0 auto;
}

I am not sure what you are referring as pre content so please describe it a bit more in detail so that i can help you.

Best Regards,
Movin

Hi @Movin

I need to hide this text (screen below with red lines) in post. Thank you.

You can try removing it using the following CSS code.

body.blog .entry-content > p:first-child {
    display: none;
}

Thank you @Movin!

You are most welcome here :slight_smile: