Hi
I have noticed some issues with the pinboard navigation when viewed on mobile devices such as my smart phone.
The navigation text flows over the header slider image instead of in the navigation. Any thoughts?
Site: http://www.northernwild.co.uk
John
You are forcing this CSS rule:
#access a {
height: auto;
}
If you need it at least wrap it in the following media query:
@media (min-width: 768px) {
#access a {
height: auto;
}
}