Hi! It's not jQuery related question but CSS. Can you show your CSS rules for the tabs?
On 25 мар, 19:59, Martin <martin.ikedia...@gmail.com> wrote: > Hello, > > I am using Jquery Tabs in a webpage and the problem I am having is > that the tabs are shown correctly in Firefox (Horizontally), but > incorrectly in IE (Vertically). Does anyone know a simple solution to > this problem? > > My html is very vanilla (see below) > > <div id="tabs"> > <ul class="holder"> > <li><a class="tabOne" href="#tabs-1">Tab 1 Title</a></li> > <li><a class="tabTwo" href="#tabs-2">Tab 2 Title</a></li> > </ul> > > <div id="tabs-1"> > <p> Tab 1 </p> > </div> <!-- End of Tab 1 --> > > <div id="tabs-2"> > <p> Tab 2 </p> > </div> <!-- End of Tab 2 --> > > </div><!-- End of Tabs --> > > How can I get the tabs in IE to be shown vertically. I assumed it was > a width issue, associated with the a links, but that didnt make much > difference... > > Regards > > Martin Ikediashi