Recently I noticed that in one section of my website, the links aren't clickable, whereas the very same links in another section are.
I wonder if its something either in the template or global settings, but Im not sure.
links not clickable: http://thriplow.org.uk/cms/index.php?page=home-4
links clickable: http://thriplow.org.uk/cms/index.php?page=news
any help would be appreciated.
Weird non clickable links [SOLVED]
Weird non clickable links [SOLVED]
Last edited by swarfega on Fri Jul 08, 2011 9:34 pm, edited 1 time in total.
Re: Weird non clickable links
It's this line in your stylesheet:
make the z-index: 0 or leave it away completely
Code: Select all
#gcmain_container { height: 100%; width: 100%;margin: 0 auto; position: absolute; top: 0px; z-index: 1; }
Re: Weird non clickable links
excellent, thanks Jos.