Hi, I would like to change the read more link into a button – http://screencast.com/t/hIgkjQ0tjjl – how can I do that?
Thanks.
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
Great. How can I make the color of the button – #37a8e0 – and the text color white?
Hi!
Please add following code to Quick CSS
.page .read-more-link a { background-color: #37a8e0!important; color: white!important; }
Best regards,
Yigit
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?
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
Great, thanks :)
How can I make the read more button to be center aligned?
Hi!
Please add following code to Quick CSS as well
.read-more-link {
text-align: center;
}
Cheers!
Yigit
Thanks.