Color change on buttons and copy

Avatar
  • Answered
I am working on customizing my website and i want to change some copy from being blue to being green - like About us, the footer copy, the buttons etc. I am not sure how to do that? Green is supper important as my brokerage main color and my branded color. HELP..
Avatar
Scott
Hello, Thank you for your question on changing color on the buttons and text for your site. CSS is usually used for formatting such as color changes. It can be used at the element level, for example a specific paragraph or even a single word. It can also be set for an entire page or the entire site. How you intend on using it will determine how and where you place it in your site. On the simplest level, you can insert it in the element. For example, a normal paragraph may look like the one below: <p> Hello World! </p> To make it green, add the style="color:green;" code to the tag, like so: <p style="color:green;"> Hello World! </p> Then, the text will go from:

Hello World!

to:

Hello World!

Basic CSS is easy to learn and begin using. You can learn that from many tutorials across the web. Kindest Regards, Scott M Kindest Regards, Scott M