How to override jQuery-ui.css styles

mmaceachran picture mmaceachran · Sep 29, 2013 · Viewed 12.5k times · Source

I've implemented the jQuery-ui tabs widget and it works great. However, it does some style things I don't like. Specifically the .ui-corner-all is rounded, and I don't want that.

What is the "correct" way to override this. Should I use a theme?

Does someone have a good beginner tutorial on how to use/create ui themes?

Answer

Anobik picture Anobik · Sep 29, 2013

try using important

.ui-corner-all{
border: 0px !important;
}

in custom style sheet or head of the doc.