Intergalactic "Older Posts" box colour change
-
Hello,
I’m not really great with CSS and have been trying to customise my blog. I’m using the Intergalactic theme and the blog I need help with is http://missmatchy.com
There are two main issues I need help with:
1. The “older posts” box at the bottom of the page. Even though I’ve changed all the links colour from a lilac to grey, it is still showing as lilac. How can I make it black?
2. The bottom area of each post, after the comments, displays a “previous post” and “next post” box with my Gravatar profile info in the middle. Is there a way to remove the Gravatar bit altogether and just leave those navigation boxes in that area?
Thanks in advance for your help.
The blog I need help with is: (visible only to logged in users)
-
1. The “older posts” box at the bottom of the page. Even though I’ve changed all the links colour from a lilac to grey, it is still showing as lilac. How can I make it black?
Hi there, to change the background of the older posts button to black, add the following to your CSS.
#infinite-handle span { background: #000; }2. The bottom area of each post, after the comments, displays a “previous post” and “next post” box with my Gravatar profile info in the middle. Is there a way to remove the Gravatar bit altogether and just leave those navigation boxes in that area?
Normally you can just apply a display: none to the main element, but that causes the comment box and footer stuff to go crazy, so the following works on hiding the elements within the author element.
.author-avatar img { height: 0; visibility: hidden; } .author-bio { display: none; } -
-
- The topic ‘Intergalactic "Older Posts" box colour change’ is closed to new replies.