Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #418359

    Hi, I would like to change the read more link into a button – http://screencast.com/t/hIgkjQ0tjjl – how can I do that?

    Thanks.

    #418360
    This reply has been marked as private.
    #418431

    Hi!

    Thank you for coming back.

    You can use a code like below and adjust the values as needed.

    If you want to limit it to this page:

    
    .page-id-15 .read-more-link a {
        background: none repeat scroll 0 0 red !important;
        border-radius: 3px !important;
        padding: 5px 10px !important;
    }
    

    Or for all pages:

    
    .page .read-more-link a {
        background: none repeat scroll 0 0 red !important;
        border-radius: 3px !important;
        padding: 5px 10px !important;
    }
    

    Come back if you need more assistance in styling.

    Best regards,
    Günter

    #418875

    Great. How can I make the color of the button – #37a8e0 – and the text color white?

    #418974

    Hi!

    Please add following code to Quick CSS

    .page .read-more-link a { background-color: #37a8e0!important; color: white!important; }

    Best regards,
    Yigit

    #419896

    Thanks. I combined the two and it looks good now.

    How can I make the Read More text bigger and how can I remove the underline when the curser is hovering over the button?

    #420249

    Hey!

    Please try the following:

    .page .read-more-link a { 
    font-size:18px !important;
    }
    
    .page .read-more-link a:hover { 
    text-decoration:none !important;
    }

    Best regards,
    Rikard

    #420256

    Great, thanks :)

    How can I make the read more button to be center aligned?

    #420459

    Hi!

    Please add following code to Quick CSS as well

    .read-more-link {
      text-align: center;
    }

    Cheers!
    Yigit

    #420469

    Thanks.

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘How to change the Read More link to a button?’ is closed to new replies.