Eridius wrote:

I am using the tabs from
http://stilbuero.de/jquery/tabs/

and they dont work in IE 7 for me:

http://dev.studentcity.com/test.php

The bar is coming up above the tabs instead of below the tabs, anyone know
why this would be happening?  I mean i am not icluding anything extra there.

You need to

1. include the IE specific style sheet:

<!--[if lte IE 7]>
<link rel="stylesheet" href="jquery.tabs-ie.css" type="text/css" media="projection, screen">
<![endif]-->

2. include a proper Doctype with system identifier to make sure to have IE running in Strict (Standards) mode, because that is what I developed the style sheet for:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd";>

Otherwise IE's rendering is even worse.



--Klaus



Reply via email to