Removing the "read more" bar on Premium theme

  • Unknown's avatar

    Hello,
    I need some help with CSS for the “Rosalie” theme.

    I would like to remove the “Read more” bar on posts, or at least change the text for the “Read more” bar.

    The blog I need help with is sewardstudentnetwork.com

    Thank you.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there,

    Sure thing! You could use the following custom CSS to replace the default “Read More” text with “Example”:

    .entry-summary a.more-link {
        font-size: 0;
    }
    
    .entry-summary a.more-link:before {
        content: "Example";
        display: block;
        font-size: .75rem;
    }

    Replace “Example” with the text you wish to appear in place of “Read More”.

    If you’d prefer to completely hide the bar then use the following:

    .entry-summary a.more-link {
        display: none;
    }

    Hope that’s helpful! As a heads up: As a WordPress.com Premium owner, you can also access live chat via our contact form. Feel free to either reply back directly here or via our form with extra questions.

  • Unknown's avatar

    Awesome. Thank you!

  • Unknown's avatar

    You’re most welcome! You know where to find us if anything else comes up too. :)

  • The topic ‘Removing the "read more" bar on Premium theme’ is closed to new replies.