change the text of a button from a featured page
-
Hello!
On my home page I have three squares with featured pages.
At the bottom of each there is a Read More button.
I’d like to change the text of the Read more button.
All I’va managed to do so far is add some text after the “read more” thanks to the CSS code :.featured-pages .information a.read-more:after {
content: “et Réserver”;
display: block;
}But this is actually not what I want, I’d like to change the whole text.
Would you be so kind as to help me with this issue ?
thanks a lot!
Kind regardsThe blog I need help with is: (visible only to logged in users)
-
Hi there, change that rule you have to this instead,
.featured-pages .information a.read-more:after { content:"et Réserver"; display:block; text-indent: 9999px; margin-top: -45px }and then add this.
.featured-pages .information a.read-more { text-indent: -9999px; } -
-
- The topic ‘change the text of a button from a featured page’ is closed to new replies.