LogicMachine Forum
slider.track on Visu - Printable Version

+- LogicMachine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Visu (https://forum.logicmachine.net/forumdisplay.php?fid=24)
+--- Thread: slider.track on Visu (/showthread.php?tid=6317)



slider.track on Visu - toujour - 18.02.2026

Hi,

how can I use the CSS to change the color of the slider trakc only before the thumb ?

BR,
Alberto


RE: slider.track on Visu - Daniel - 18.02.2026

Just change inactive color in the apperance.


RE: slider.track on Visu - toujour - 18.02.2026

I'm seraching in active color..... Dodgy


RE: slider.track on Visu - admin - 19.02.2026

As Daniel said, use Appearance - Inactive color controls.

Keep in mind that element's default opacity is 50% so the final color will be slightly different. If needed, it can be changed via CSS:
Code:
.slider-track div {
  opacity: 1;
}

This will target all sliders. CSS rule can be modified to target only specific custom CSS classes.