Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I want to style the slider similar to this wherein the color is different on both halfves of the slider based on the position.
How do you think i can achieve this?
Hi,
I think you should be able to do what you want with a stylesheet like:
QSlider::sub-page { background: rgb(0, 0, 255); } QSlider::add-page { background: rgb(128, 128, 128); }
Adjust the color to your liking.