The "read more" buttom don't dispayed on blog home page

The “read more” buttom don’t dispayed on blog home page. When I write the blog post, I pushed on buttom “read more”. But when I go to the home page of my blog, I don’t see the buttom - “read more”

Hi @nick3309269,

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

Could you please share me your site URL where it’s happening so that i can troubleshoot it?

Please also see the replies posted in the following topics for the similar questions which will help you.

https://colorlibsupport.com/t/more-link-not-visible/

Best Regards,
Movin

O… I’m very hapy to hear you. My url - www.dominantblogger.com

I have the same problem since “WordPress 4.5.3”.

@nick3309269 To display the read more button try 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

body.home  a.more-link {
display: block;
}
body.home a.more-link {
    font-size: 0;
}
body.home a.more-link:before {
    content: "Read More";
    display: block;
        float: right;
    margin-top: 10px;
    font-size: 12px;
    padding: 11px 13px;
    background-color: #DA4453;
    border-color: #DA4453;
        color: #FFF;
    text-transform: uppercase;
        border-radius: 4px;
}
body.home a.more-link:hover{
background-color: transparent;
    border-color: transparent;
}

It’s a great! Thanks for all …

You are most welcome here :slight_smile: