Changing The Font Size Of The Previous / Next Navigation Links
-
I’m using the Platform Theme by PageLines Ver. 1.4.2.
I have searched and searched and even tried altering/adding some CSS and cannot figure out how to change the font size of the Previous and Next navigation links.This is area of the CSS that I was so sure was the right place:
.post-nav .previous a {
float: left;
display: block;
padding-left: 24px;
background: url(./images/post-previous.gif) no-repeat left center;
}
.post-nav .next a {
float: right;
display:block;
padding-right: 24px;
text-align: right;
background: url(./images/post-next.gif) no-repeat right center;`
}I added “font-size: 2em;” above the float parameter for both the previous and next so that the code looked like this:
.post-nav .previous a {
font-size: 2em
float: left;
display: block;
padding-left: 24px;
background: url(./images/post-previous.gif) no-repeat left center;
}
.post-nav .next a {
font-size: 2em
float: right;
display:block;
padding-right: 24px;
text-align: right;
background: url(./images/post-next.gif) no-repeat right center;
}And yet I am still not having any luck at all. Nothing I do seems to make any change whatsoever!
Any help you guys can provide would be GREATLY appreciated.
- The topic ‘Changing The Font Size Of The Previous / Next Navigation Links’ is closed to new replies.