Home › Forums › CSS › [Solved] How can I make my footer links clickable? › Re: [Solved] How can I make my footer links clickable?
Try these couple of things:
Remove the 1st #wrapper from your Styles (You have it twice – remove the style that has min-height: 100%. Not only do you have #wrapper twice – but min-height is not necessary and is not compatible in some browsers).
Remove the Top & Left coordinates on #FooterWrap – just leave margin: 0 auto
Your links have a h6 heading – do not think this is necessary (I may be wrong). Also in your CSS – you have the links as: Link – Hover – Active. Remember the Love Hate rule – LVHA. Links must be placed in proper order to work properly. a:link – a:visited – a:hover – a:active. You currently have them as a:link – a:hover a:visited.
Hope this puts you in the right direction