Comment to 'How to change ''unit no thumb color'' with custom css?'
  • Hello @Peter !

    The color scheme utilized in this section relies on gradient CSS classes, such as .from-red-400 and .to-red-500. Although there is no in-built tool within the Studio to adjust these colors directly, it can be modified through the Custom Styles settings within the template. Alternatively, the utilized CSS class can be corrected through the use of a JavaScript script within the RAW block, which should be implemented at the end of the webpage:

    <script>

      $(".from-red-400").removeClass("from-red-400").addClass("from-blue-400");

    </script>