Tobi
Tobi

Reputation: 1312

Strange Disapearing elements in small browsers when hover

Hi There when I make my browser smaller than 420px (Using Chrome Stable) the Navigation elements in the first navigation line disapear, when I hover them. I cannot find the mistake.

Can anybody help? Website is: http://www.tokemedia.de

Upvotes: 0

Views: 38

Answers (1)

Gildas.Tambo
Gildas.Tambo

Reputation: 22653

go to style.css and change display:inline to inline-block;

#navi ul li {
float: left;
margin-left: 10px;
list-style: none;
text-align: center;
display: inline-block;/* not inline*/
}

Upvotes: 2

Related Questions