kdash1228 Posted November 21, 2022 Share Posted November 21, 2022 (edited) File: /presta/themes/finalcart/templates/checkout/_partials/steps/personal-information.tpl I want to edit the link colors for the checkout-guest-form links. They are currently a dark gray but I want the selected option to be a different color, so it is easier for the user to see these as options/links. Can someone help me figure out which class to edit in the theme.css file? I tried a few but could not get the change I want to appear. For example, I want the selected option to be RED and the unselected option to be BLUE. personal-information.tpl Edited November 21, 2022 by kdash1228 (see edit history) Link to comment Share on other sites More sharing options...
JBW Posted November 24, 2022 Share Posted November 24, 2022 Use the inscpect function in your browser to find the correct CSS selector. Then add the correponding statement in yout themes custom.css (not theme.css) Link to comment Share on other sites More sharing options...
ps8modules Posted November 24, 2022 Share Posted November 24, 2022 Hi. Do you mean Guest Checkout and Sign Into Your Account? Link to comment Share on other sites More sharing options...
kdash1228 Posted November 25, 2022 Author Share Posted November 25, 2022 On 11/24/2022 at 10:58 AM, 4you.software said: Hi. Do you mean Guest Checkout and Sign Into Your Account? Yes, those are the links I want to change the color for. Link to comment Share on other sites More sharing options...
Nickz Posted November 25, 2022 Share Posted November 25, 2022 On 11/24/2022 at 10:13 AM, JBW said: Use the inscpect function in your browser to find the correct CSS selector. Then add the correponding statement in yout themes custom.css (not theme.css) 20 minutes ago, kdash1228 said: yes, those are the links I want to change the color for. Just follow his advice Link to comment Share on other sites More sharing options...
ps8modules Posted November 26, 2022 Share Posted November 26, 2022 custom.css .nav-item .nav-link { color: blue !important; } .nav-item .nav-link.active { color: red !important; font-weight: 800; } 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