joelhroliveira Posted January 30, 2024 Share Posted January 30, 2024 Hello guys, Im new on prestashop, and i'm trying to change the font color of one menu item to red. I tried a lot of stuff that i already saw there on the prestashop form but nothing works and i would like to understand the knowledge. Website: https://sapataria.abacriativo.pt/ Can someone help me ? Thanks! Joel Link to comment Share on other sites More sharing options...
EPHG Posted January 30, 2024 Share Posted January 30, 2024 You can try to add the following to your custom.css ( /themes/your_theme/assets/css/custom.css ) /* Set color for the category link */ #category-6 a.dropdown-item { color: #ff0000 !important; /* Change the color as needed */ } /* Set color for the category link on hover */ #category-6 a.dropdown-item:hover { color: #00ff00 !important; /* Change the color on hover as needed */ } Link to comment Share on other sites More sharing options...
joelhroliveira Posted January 31, 2024 Author Share Posted January 31, 2024 On 1/30/2024 at 10:06 PM, EPHG said: You can try to add the following to your custom.css ( /themes/your_theme/assets/css/custom.css ) /* Set color for the category link */ #category-6 a.dropdown-item { color: #ff0000 !important; /* Change the color as needed */ } /* Set color for the category link on hover */ #category-6 a.dropdown-item:hover { color: #00ff00 !important; /* Change the color on hover as needed */ } Expand Hello, I tested it out and nothing has changed… Do you have any other solution ? Thanks! 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