Not sure if you wanted just the tabs container or all the tabs on the right,
so here's both:
demo: http://jsbin.com/enapu

source: http://jsbin.com/enapu/edit

that floats the tabs container to the right with

#tabs { width: 500px; float: right; }

and each tab to the right with

#tabs .ui-tabs-nav li { float: right; }
#tabs .ui-tabs-nav li a { float: right; }

Depending on your layout you could also do absolute positioning, for
example:

#tabs { position: absolute; right: 10px; top: 10px; }

These are just two of many ways to get the tabs element on the top right,
but it's really just a css layout question, as the tabs element is just a
DIV.

- Richard

On Thu, Sep 24, 2009 at 4:16 PM, Stephan <[email protected]> wrote:

>
> My question is quite simple, forgive me, css got so complex in the
> last few years.
> I want to position the JQuery Tabs on the top right side of the page.
> I cant find how to manipulate the CSS.
> Tried something with left: 200px etc.. but that didnt work
> Who can help?
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to