madbird
Member
Posted 4 months ago #
IMy very first posting - have modified the theme to allow nav bar on single theme but the "Previous/Next buttons" are still central causing a problem. How can I centre them on the content rather than the page. Spent two days on this and have searched various blogs for an answer.
Thanks!
http://madridbirder.com/birdwatching-in-madrid/2012/01/21/birdwatchers-flock-to-hampshire-village-to-spot-rare-spanish-sparrow/
Here's what it looks like you're trying to do:
#content nav {
clear: both;
width: 200px;
margin: 0 auto;
}
On line 1683 of your style.css, you should be able to replace #content nav with the above code. Tell me if it works out.
madbird
Member
Posted 3 months ago #
You pointed me in the right direction, this worked for my blog:
#nav-single {
float:center;
}
Thanks a lot.
there is no such a thing as float:center;
http://www.w3schools.com/css/css_float.asp
using float: none; instead would bring the nav into the center of the content column.