Reputation: 57928
I have a css display issue with jquery ui tabs, where after you go over a certain number of tabs, the last tab drops down to the next line, as if the tab before it was set to clear:right.
i cant figure out what css is causing this.
edit: i should mention that i see this issue in FF and Chrome. havent tried in IE yet
also here is a screenshot of what i see:
edit 2: this seems to depend on resolution. it happens to me in 1280x1024 and smaller
Upvotes: 0
Views: 319
Reputation: 50009
I actually understood your question after playing around with resizing the browser as it doesn't happen on widescreen monitors otherwise.
The issue you're having is due to .header-contact
jutting down into the tab area because of the padding. You either have to remove the padding or decrease the height of this class and everything should be ok.
Upvotes: 2