Thank you for your question and thank you for using Crio Pro WordPress Theme. The easiest way to change the color of your buttons is by using the Customizer Palette controls. Just navigate to Appearance<<Customizer<<Colors to find the color control settings.
If you need more control you can also change your buttons styles and colors with CSS using the Custom CSS/JS editor in the Advanced section of the Customizer as well.
I hope this helps! Let us know if you need any further assistance.
This reply was modified 3 years, 1 month ago by Brandon C.
This reply was modified 3 years, 1 month ago by Brandon C.
Thank you, Brandon, for your reply and suggestion. When I tried changing the color on the Color Palette, either I was doing something wrong or it didn’t do what I was hoping. I will look into a solution with CSS. Thanks again.
I’m sorry to hear to you’re having trouble changing link colors in the customizer. You may be able to follow this guide to get more familiar with customizing the color palette.
But selecting the link element directly with CSS will definitely accomplish your task as well. For example, if you wanted to change the color of all links to blue you could use:
a {
color: blue !important;
}
Thanks so much for your question! Please let us know if you need any further assistance.
Thanks for the additional info, Brandon. I did go back to the Color Palette and changed one of the colors, which I didn’t need anywhere in the site, to the one I wanted, and that took care of it.
Also, I tucked away your example of CSS for possible future use.