• Forgot to add in my last post on blog page I would like the read more link text to be a css styled button.

    Anyone have any idea on what code to change?

    Many thanks…

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey there jecn100,

    How are you doing today?

    This should be possible with some custom CSS. This is as simple as adding background color, some padding etc to the links where you want this. You can see examples here http://www.w3schools.com/css/css3_buttons.asp.

    If you need help with this please post link to your site where I can see those links and I’ll be happy to help 🙂

    Cheers,
    Bojan

    Thread Starter jecn100

    (@jecn100)

    Hi Bojan,

    Thanks for reply the problem is there is no class to style the read more link in theme it is simple a link a the bottom of the text if you now what i mean.

    What i require is the place in the theme file where i would add the class so it can be styled.

    Thanks,
    Justin

    Hey Justin,

    You can still be able to target that link with some specificity, I checked the theme on my sandbox site and something like this should work:

    .blog .postcontent .entry-content p a {
        padding: 5px;
        background: #ccc;
        border-radius: 5px;
        color: #fff;
    }

    Of course you’d want to apply your own styles to it but the selector works properly.

    Let me know if this helps 🙂

    Cheers,
    Bojan

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Read More link’ is closed to new replies.