Re: change in struts tabbedpanel style

2008-02-23 Thread hardik_982
Yes you are right i can do it after removing link of tabs.css from my jsp thanks dude -- View this message in context: http://www.nabble.com/change-in-struts-tabbedpanel-style-tp15628786p15650868.html Sent from the Struts - User mailing list archive at Nabble.com.

Re: change in struts tabbedpanel style

2008-02-22 Thread Jeromy Evans
The specific problem is that your inline CSS occurs before your link to tabs.css, so tabs.css overrides yours. Switch the order! I don't think you should be importing tabs.css yourself - dojo will import it for you (check in Firebug, it'll be listed twice if it's not needed). I've never im

Re: change in struts tabbedpanel style

2008-02-22 Thread hardik_982
I have use your logic like this <%@ page contentType="text/html;charset=UTF-8" language="java" %> <%@ taglib prefix="s" uri="/struts-tags" %> .dojoTab { position : relative; float : left; padding-left :

Re: change in struts tabbedpanel style

2008-02-22 Thread hardik_982
great dude i have installed firebug, its amazing! thanks -- View this message in context: http://www.nabble.com/change-in-struts-tabbedpanel-style-tp15628786p15632074.html Sent from the Struts - User mailing list archive at Nabble.com. -

Re: change in struts tabbedpanel style

2008-02-22 Thread Jeromy Evans
Just override the css by creating your own CSS file and including it in your page. Take a look at the showcase: http://www.planetstruts.org/struts2-showcase/ajax/tabbedpanel/example2.jsp If you view the generated source using the Firefox plugin I mentioned before you'll see this html:

Re: change in struts tabbedpanel style

2008-02-22 Thread hardik_982
I USE STRUTS 2.0.11 I want to say i am completely zero in dojo i could not understand docs of it can nt achieve to change tab style hey i find that there is complete source available of struts 2.0.11 in directory basically tabs.css contain in xwork.jar and it is built from \struts-2.0.11\src\core

Re: change in struts tabbedpanel style

2008-02-22 Thread Jeromy Evans
hardik_982 wrote: -->PS. The styles may be documented somewhere at www.dojotoolkit.org for 0.4.0 but I don't recall ever seeing it. i think you tell about http://dojotoolkit.org/book/dojo-book-0-9/part-2-dijit/themes-and-design/overriding-and-combining-themes Yes, but that's for Dojo 0.9 whi

Re: change in struts tabbedpanel style

2008-02-21 Thread hardik_982
-->PS. The styles may be documented somewhere at www.dojotoolkit.org for 0.4.0 but I don't recall ever seeing it. i think you tell about http://dojotoolkit.org/book/dojo-book-0-9/part-2-dijit/themes-and-design/overriding-and-combining-themes -- View this message in context: http://www.nabble.

Re: change in struts tabbedpanel style

2008-02-21 Thread Jeromy Evans
hardik_982 wrote: can anybody say how i can change in s:tabbedpanel tabs color of tab and style thanks in advance Override the CSS. In Firefox, install the Web Developer Toolbar and inspect the generated source when you have tabs visible. You'll be able to see the styles on the html tags a