I’m using jquery verical tabs and incorporating tables as the data shown when a tab is clicked. The problem is that my tables show on the bottom of the tabs as oppose to floating on the right hand side of the tabs like I want.
I have tried recreating my problem JS-FIDDLE demo and if you click on the trash tab you will see a table on the bottom of the tabs… the only difference is that in my script the anchor tags are external php files that contain tables. I’ve tried style="float:right" & it did not work, I am unsure if jquery tabs is conflicting what I’m trying to do, but would like to know. I am at my wits end trying to figure out how to get the tables to position correctly. I would very much appreciate any assistance or tips regardless of what on that one may have for me.
I’m using jquery verical tabs and incorporating tables as the data shown when a
Share
The computed style of the tab is
~827.966pxand you table width is940px.That’s why it goes down.
Remove your table width or change to a lower value.
demo