tags:

views:

64

answers:

2

Hi there,

The title says it all, my website looks good in Iexplorer 8 and Firefox but the part of the picure and top navigation is laso noty in place, can anyone figur out why? For me it's a mysterie

http://www.friesecomputerservice.nl/

+1  A: 

It seems that your wrap_header container is not wide enough to fit the tabs, so for some reason chrome thinks it's best to move everything to the next line.

It could very well be a rendering error, and it would be a good idea to report it to the chrome forum.

Tor Valamo
Adding just 2px seems to fix it.
CResults
I need 3px on Mac Chrome. 942px is not enough.
jonwd7
+1  A: 

Change styler.css line #58 from

div#wrap_header{font-family: 'trebuchet ms';margin: 0 auto 0 auto;width: 940px;z-index: 2;}

to

div#wrap_header{font-family: 'trebuchet ms';margin: 0 auto 0 auto;width: 943px;z-index: 2;}
CResults
Great, strange that only chrome interpret it like that
Chris