Visual theme: remove background colour from Older Posts button
-
Hi,
I’ve used the following code to get to what I have right now:
#infinite-handle span {
background: #383838;
color:#40d7bc;
}#infinite-handle span button {
background: #383838;
color:#40d7bc;
}#infinite-handle span button:hover {
color:#FFFFFF;
}What I would like to achieve is one of the following:
1. Remove the grey box around the text
or
2. Make the grey box a rounded corner button (without the dark grey colour just above Older Posts).Hope that makes sense. To be consistent with the rest of my site, the text displays light green and turns white on hover.
Many thanks!
The blog I need help with is: (visible only to logged in users)
-
Hello
Add this to your CSS to remove that background.
.hentry { background: none; }Hope this helps. Let us know if you have any additional questions!
-
That didn’t work. Sorry, I don’t think I explained myself clearly.
I’m trying to remove this shading from the “Older Posts” button at the bottom of my page only, not from the actual posts. If I can’t, then have that grey shading on the button with rounded corners so it looks more like a button and not a label.
Thank you!
-
Hi there, see if this does what you are asking for.
button, button:hover { box-shadow: none; } -
-
- The topic ‘Visual theme: remove background colour from Older Posts button’ is closed to new replies.