I need assistance changing the global borders width on my site. In the Chrome Developer, I am able to achieve this successfully. I need to change the width from 1 to 0.5. I've located the global borders in the css panel (settings.data.json).
JSON isn't accepting the decimal in the 0.5 width. I tried 0,5 and that also doesn't work. Is there another way I can easily achieve this
{
"type": "range",
"label": "Width",
"id": "globalBorderWidth",
"min": 1,
"max": 3,
"step": 1,
"unit": "px",
"default": 1
}
I've tried to change the "min" and "default" to 0.5 , 0,5 , and "0.5" and keep receiving an error that the JSON file can not be saved.