yyxxzn Posted January 4, 2019 Share Posted January 4, 2019 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 Link to comment Share on other sites More sharing options...
razaro Posted January 4, 2019 Share Posted January 4, 2019 You can try to add .material-icons.add { color: #ffffff; } or more specific so it is just targeting arrow in footer #footer .title .material-icons.add { color: #ffffff; } 1 Link to comment Share on other sites More sharing options...
yyxxzn Posted January 4, 2019 Author Share Posted January 4, 2019 I solved the problem of the arrows. I would like to change just the color of the link in the footer '© 2019 - Ecommerce software by PrestaShop™ ' Link to comment Share on other sites More sharing options...
razaro Posted January 4, 2019 Share Posted January 4, 2019 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 More sharing options...
yyxxzn Posted January 4, 2019 Author Share Posted January 4, 2019 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 More sharing options...
razaro Posted January 4, 2019 Share Posted January 4, 2019 Could you post a link to your website ? Link to comment Share on other sites More sharing options...
yyxxzn Posted January 4, 2019 Author Share Posted January 4, 2019 (edited) 56 minutes ago, razaro said: Could you post a link to your website ? Edited January 4, 2019 by yyxxzn (see edit history) Link to comment Share on other sites More sharing options...
razaro Posted January 4, 2019 Share Posted January 4, 2019 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; } 1 Link to comment Share on other sites More sharing options...
yyxxzn Posted January 4, 2019 Author Share Posted January 4, 2019 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 1 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now