Not an SEO expert (so don’t quote me n this) but hidding tags this way can be considered as Black Hat SEO.
Anyway you can use
youtagdiv {
display: none;
}
or
youtagdiv {
visibility:hidden;
}
I would be careful about using things like:
youtagdiv {
color: transparent;
}
or trying to make the text colour the same as the background colour
youtagdiv {
color: #fff;
}
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
salsaturation the last 2 are definitely Black Hat but maybe the first will do!
Sooo, stupid question, how do I do it?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Are you sure you spelt your theme name right? Nothing comes up http://wordpress.org/themes/search.php?q=AnimeLight
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Oh we don’t support that theme, here are your theme’s support forums: http://newwpthemes.com/forum/
If you don’t already have a custom.css you should install a plugin like custom CSS plugin then add the following code to it.
youtagdiv {
display: none;
}