Template: Dark not working on iPad
Permalink
Hi,
I have a websitehttp://www.vaartrainingen.nl but when I watch it on Safari in MacOSX or iOS it doesn't work.
The NAV bar is not clickable!
Any suggestions?
Regards, Leroy
I have a websitehttp://www.vaartrainingen.nl but when I watch it on Safari in MacOSX or iOS it doesn't work.
The NAV bar is not clickable!
Any suggestions?
Regards, Leroy
I took a look at your theme and can see your problem - it looks as though your logo (H1) is set to the full width of the page and is actually in front of the navigation and thus blocking you from clicking any of the links.
Try amending this in you main.css in your theme:
#page #header #headerNav{ position: absolute; top: 14px; right: 0px; z-index:2; width:100%; overflow:visible;}
To this:
#page #header #headerNav{ position: absolute; top: 14px; right: 0px; z-index:20; width:auto; overflow:visible;}
I basically increased the z-index and changed the width. Give it a try and see if you have any joy.
Andy
The Formigo Team