Question

Im trying to remove the outer border of the bar and cant seem to figure it out no matter what. Ive looked a the others on what to do and ive tried. Here is my sample

enter image description here

<div id="vertical-slider"></div>

.ui-slider .ui-slider-handle {

margin-left: .2em;
cursor: hande;

position: absolute;
height: 1.em;
width: 1.em;
z-index: 2;

outline: 0px;
outline: none; 
}
.ui-slider .ui-slider-handle:focus { outline: none; }
.ui-slider-handle { outline: none; }

I know this is probably one of those "damn was that all it took" solutions :D

Was it helpful?

Solution

#vertical-slider {
    border:0;
}

Worked for me

jsFiddle example

OTHER TIPS

Is this what you mean?

#vertical-slider.ui-slider {
    border: 1px solid transparent;
}

http://jsfiddle.net/pw5nj/3/

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top