Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change the width and height of jQuery slider

I want to change the width and height of jquery slider UI. I am using ui-lightness theme. I tried to override the default jquery.css by adding the following code in my style sheet.

.ui-slider .ui-slider-horizontal { height: .6em; }
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1em;
  height: 1em;
  cursor: default;
}

But the above css has no effect. jquery.css overrides the above style and I see no change in the slider. How to override the default jquery.css styles?

like image 996
Vivek Avatar asked Dec 07 '11 15:12

Vivek


1 Answers

Try adding the !important rule over after your width and height declaration, like so:

width:1em !important;
height:1em !important;

That should force your declaration to be read.

like image 103
Andres Ilich Avatar answered Sep 24 '22 08:09

Andres Ilich