Reputation: 129
So I am building out a website for a client, and I've come across an interesting bug. The top nav appears in every browser but Safari. The thing is, the links are there, they just are not visible. But the cursor goes to a pointer! This is so strange! Go ahead and take a look, I would love to figure out how the heck that happened.
Upvotes: 0
Views: 109
Reputation: 92793
May be you have to remove float
from your #nav-primary a
& give it your .menu li
. Write like this:
#nav-primary a{
float:none;
}
.menu li{
float:left;
}
Upvotes: 2