billiejo
Forum Replies Created
-
Thank you @threadi
When I click on the “Incident Response” button from any page but the Incident Response page, during the transition, it briefly displays the text in the hover color of the main menu after adding the CSS code.
Also, when I’m on the Incident Response page, the color of the button does not change to #ff8a42 when you hover.
It’s much closer than before. Again, I appreciate any and all feedback.
Buttons are displayed correctly here: https://deertech.com/
Incident Response text should be white here: https://deertech.com/incident/. The button is displaying the default hover color.
.menu-incident a {
background-color: #ef6810;
color: white;
border: none;
padding: 15px 32px;
border-radius: 4px;
text-decoration: none;
display: inline-block;
transition: background-color 0.3s ease;
}
.menu-incident a:hover {
background-color: #ff8a42;
color: white;@bvbaked-I’m sorry, but I’m learning and not following your instructions
Thanks for your patience.
Thank you for the quick response.
I replaced the code in Additional CSS and it did correct the issue when I hover over the Incident Response button while on the Incident Response page. However, the text color defaults back to the hover color when you hover over the button on the other pages. This is the opposite of what was happening before I replaced the code.