Behold! I’m smart! After I coded the CSS stylesheet to display content into the entry element, I noticed that this navigation code also affected the left code in the footer element.
So a few minutes ago, I used my big brain and the inspiration came forth to my small mind: Thusly, I entered the last three codes to make the ‘default’ stuff in the footer element ‘disappear’, except for my self-aggrandizing copyrighted crap.
[code language=”css”]
.postnav, .left:before {
content: "Previous/Older ‹";
}
.postnav, .right:after {
content: "› Next/Newer";
}
footer .left:before {display:none;}
footer .left:after {
content: ‘© Copyright 2001-2016 FlynnsPaws’;
}
footer .left a {display:none;}[/code]
Leave a Reply