How do I change the Border Color for an individual Color Selection element?
Something I can add to the:
For Developers: Section ID
Apply a custom ID Attribute to the section, so you can apply a unique style via CSS. This option is also helpful if you want to use anchor links to scroll to a sections when a link is clicked
OR
Custom Css Class
Add a custom css class for the element here. Make sure to only use allowed characters (latin characters, underscores, dashes and numbers)
Thanks for your help!!
Hey Micheal0424!
Please apply a unique ID to your color section element and then add following code to Quick CSS
#your-custom-id {
border-color: red;
}
Best regards,
Yigit
Worked perfectly, thank you !!