Override the default builder css

Please fill out as many of the following questions as possible so we can help you promptly! If you don’t know how to answer or it does not apply, feel free to remove it or leave it blank.

What are you trying to accomplish
I want to override the default builder css. Currently whenever my page loads all the links for some seconds show in blue colour. I want to change it in hex code #2f2f30 by default so that the blue colour of links is not shown.

Hi @IshitaSatija,

Welcome to the builder.io forum.

To override the default builder CSS for links you can use the below code

a{
   color: #2f2f30 !important;
}

Let us know if you still have any concerns or questions. Thank you!