I want to remove icons from my website using CSS
You can see it here https://www.stormyark.de/hksv
I uploaded the website files at github
I already tried to set the "width=0" of the icons but nothing happened.
CodePudding user response:
use display: none;
on the class of the element you want to hide.
CodePudding user response:
There are 3 ways of hiding an element in CSS.
Display: none; This will remove the element from the DOM
opacity: 0; This will hide the element.
visibility:hidden; This will hide the element.
Note: Opacity and visibility does not remove the element.