JQuery Tabs and Form Styling
Hello,
I'm new to these forums and new to JQuery and CSS. I'm trying to use the JQuery Tabs, http://docs.jquery.com/UI/Tabs , with forms inside of the tabs. This works fine, but I want to style them, so obviously I choose to use a JQuery plugin for this, and I have tried to use both JQTransform and jNice, but neither work. I believe it has something to do with divs inside of divs.
This is the form code I'm using, notice I'm using jNice atm.
[code]
<div id="tabs-2">
<form class="jNice">
<label for="name">Name: </label>
<input type="text" name="name" size="30" />
<input type="submit" value="send" />
</form>
</div>
[/code]
However, where the text field and button some be, there is nothing. I have tried changing the return from a div to span and also to p. What else can I try?