Jump to content

CSS Help


Recommended Posts

Is it possible to edit the color only of these elements? I try to edit them using CSS but I edit every .materialicons or every .a in the website

I made the arrow in blue because it isn't visible, because it has the same color of the bg

Thank you

I attached the parts that I need

Capture.PNG

Capture2.PNG

Link to comment
Share on other sites

Please share your solution for arrows, it could help someone.

For link in footer,  think it is good to learn a bit of CSS and also how to use browser development tools. Let me know if you need

some links. You can right click on link and see what CSS rules are applied and also how to specifically target that one.

For example if you are using default 1.7 theme 

#footer .footer-container .col-md-12 .text-sm-center a {
    color: #000;
}

 

Link to comment
Share on other sites

I used this one to solver the arrow problem

Quote

#footer .title .material-icons.add {
    color: #ffffff;
}

I'm actually using the default skin and code you sent doesn't work, I tried a lot of things but I don't know how to change its color

Link to comment
Share on other sites

11 minutes ago, razaro said:

You have  dot . before   a, and you should not have that, it would not work.

Remove it and it should be fine.


#footer .footer-container .col-md-12 .text-sm-center .a {
    color: #fff;
}

I solved thank you

 

  • Like 1
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...