EmperorYogi
Member
Posted 1 year ago #
On my website (www.youlaughyouwin.com), I have a little problem.
At the bottom, the 'older posts' button is in the same spot as my 'like' image for the Vote It Up plugin.
I don't know much PHP, but is there an easy way to bump that link down a line?
Thanks for the help.
edit style.css of your theme;
more than half way down, find:
.navigation {
color: #888;
font-size: 12px;
line-height: 18px;
overflow: hidden;padding-top:30px;
}
try and add a top padding to it;
for instance:
.navigation {
color: #888;
font-size: 12px;
line-height: 18px;
overflow: hidden;
padding-top:30px;
}
(not widely tested)
EmperorYogi
Member
Posted 1 year ago #
Nice! I changed it to 60px and that bumped it down enough. Thanks a lot.