Forums

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

Home Forums CSS Hiding a link Reply To: Hiding a link

#239776
Paulie_D
Member

Depends on how much you know about the href of the link.

I’d use an attribute selector:

http://www.w3schools.com/css/css_attribute_selectors.asp

a[href*="abc"] {
  display: none;
}

https://jsfiddle.net/dghqbkjw/