I love the functionality of the jQuery accordion (http://jqueryui.com/demos/accordion/) however I do not want the style !!
I\'d like to get rid of all the styles, the im
I needed (wanted) to do the same thing. In my case I wanted to remove the extra padding the default css provides for accordion-content, which looks like this:
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
In MY css I simply added this:
.ui-accordion .ui-accordion-content {padding: 0;}
This successfully set (overrode) just the padding.
Rob