Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Removing hover and changing text colour on top banner Reply To: Removing hover and changing text colour on top banner

#299525
Atelierbram
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"] { }