Home › Forums › CSS › Removing hover and changing text colour on top banner › Reply To: Removing hover and changing text colour on top banner
November 25, 2019 at 7:08 am
#299525
Participant
To disable the hover and change color on the ‘Become a Host’ link:
.navigation li:first-of-type a {
pointer-events: none;
cursor: default;
color: #000;
}
Or alternatively use this selector: [id="register-modal-seller"] { }