Jump to content

Change icon colors


Recommended Posts

Hi,

 

Does any of you know how it is possible to change the color of the icons, like the security, phone, cart icon etc.

I have searched for the color code in a bunch of .css files, but i can't find it.

 

Thanks!

 

Best Regards

post-815466-0-55055200-1433240093_thumb.png

post-815466-0-22203900-1433240094_thumb.png

post-815466-0-77728200-1433240094.png

Link to comment
Share on other sites

Every icon is separated CSS class... And that's why you will have to modify colors of each one manually.

 

Example for truck icon:

 

/themes/default-bootstrap/css/global.css

 

Find: .icon-truck:before

 

And add there CSS attribute, for example,

 

color:red;

 

So it would look like

.icon-truck:before {
  content: "";
  color:red; }
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...