Comments Robert started the conversationMarch 2, 2014 at 8:23pmI want to have my own hand-coded footer menu on the LEFT side....what would be the CSS for the link color, active color, hover color, etc....I am guessing something starts with #footer-outer #copyrightBut, not sure how to do the other stuff....Robert repliedMarch 3, 2014 at 12:48amI ended up with this.....it works but is there a better way?#footer-outer #copyright a:link { font-size: 11px; font-family: 'OpenSansbold'; letter-spacing: 1px; text-transform: uppercase; color: #363636!important; } #footer-outer #copyright a:hover { color: #ffffff!important; font-size: 11px; font-family: 'OpenSansbold'; letter-spacing: 1px; text-transform: uppercase; } #footer-outer #copyright a:active { font-size: 11px; font-family: 'OpenSansbold'; letter-spacing: 1px; text-transform: uppercase; font-weight: strong; color: #e3f4a1!important; } #footer-outer #copyright a:visited { font-size: 11px; font-family: 'OpenSansbold'; letter-spacing: 2px; text-transform: uppercase; font-weight: strong; color: #e3f4a1!important; } Sign in to reply ...
I want to have my own hand-coded footer menu on the LEFT side....what would be the CSS for the link color, active color, hover color, etc....I am guessing something starts with
#footer-outer #copyright
But, not sure how to do the other stuff....
I ended up with this.....it works but is there a better way?
#footer-outer #copyright a:link { font-size: 11px; font-family: 'OpenSansbold'; letter-spacing: 1px; text-transform: uppercase; color: #363636!important; }
#footer-outer #copyright a:hover { color: #ffffff!important; font-size: 11px; font-family: 'OpenSansbold'; letter-spacing: 1px; text-transform: uppercase; }
#footer-outer #copyright a:active { font-size: 11px; font-family: 'OpenSansbold'; letter-spacing: 1px; text-transform: uppercase; font-weight: strong; color: #e3f4a1!important; } #footer-outer #copyright a:visited { font-size: 11px; font-family: 'OpenSansbold'; letter-spacing: 2px; text-transform: uppercase; font-weight: strong; color: #e3f4a1!important; }