andrewmarshall Posted November 30 Posted November 30 Site URL: http://www.roamvet.com Button changes outline color when I open the nav menu on mobile. How do I find this color and make it stay the same? Thanks!
Squareko Posted Sunday at 10:36 AM Posted Sunday at 10:36 AM Add this cod into @media screen and (max-width: 767px) { .header .header-actions-action--cta { display: block; outline: 2px solid #FF0000; /* Change outline color */ } .header .header-actions-action--cta:hover { outline-color: #00FF00; /* Change to a different color on hover */ } }
Solution andrewmarshall Posted Sunday at 06:18 PM Author Solution Posted Sunday at 06:18 PM 7 hours ago, Squareko said: Add this cod into @media screen and (max-width: 767px) { .header .header-actions-action--cta { display: block; outline: 2px solid #FF0000; /* Change outline color */ } .header .header-actions-action--cta:hover { outline-color: #00FF00; /* Change to a different color on hover */ } } This did not work, instead it puts a red square OVER the button.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment