I have the following script:
http://jsfiddle.net/2HNvL/
but I can't seem to remove the light gray border around the tab control. Anyone here know how to do that?
I have tried the following:
#tabs .ui-widget { border:none; padding:0px; margin:0px; }
#tabs .ui-widget-header { border:none; display:none; padding:0px; margin:0px; }
#tabs .ui-widget-content { border:none; padding:0px; margin:0px; }
But that does not work.
Adding to your list a simple #tabs {border: none}
should do the job.
Assuming I understand your question correctly you want to remove the border around the text
Proin elit arcu, rutrum commodo, vehicula tempus, commodo a,
If that is the case, your one selector is wrong for .ui-widget-content
#tabs .ui-widget-content { border:none; padding:0px; margin:0px; }
Is looking for a child element of .ui-widget-content
with a parent of #tabs
If you change it to this:
#tabs.ui-widget-content { border:none; padding:0px; margin:0px; }
Will target only an element with an id of tabs and a class of .ui-widget-content
Updated jsfiddle.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With