Spun theme: how to change the "Older Posts" button
-
The title says it all: I want to change the “Older Post” in the button for, let’s say, “Example”. How can I do that? Thanks.
The blog I need help with is: (visible only to logged in users)
-
Hi there, add the following CSS and see what you think.
#infinite-handle span { visibility: hidden; } #infinite-handle span:after { background: #555555; border-radius: 20px; color: #FFFFFF; content: "Example"; float: left; padding-left: 20px; padding-right: 20px; opacity: 0.9; visibility: visible; } -
That’s a big help, thanks. But what I want to write in this button is “Mais artigos”, which only fits in two lines. How can I make this button larger in order to make that sentence fit in a single line?
I really appreciate your help
-
Add the following to the first rule I gave above.
width: 120px;so it looks like this:
#infinite-handle span { visibility: hidden; width: 120px; } -
-
- The topic ‘Spun theme: how to change the "Older Posts" button’ is closed to new replies.