Hi,
Can anyone tell me where exactly to remove "Category Archives: Nieuwsbrief archief" in this page:
http://sndvu.helpmeverder.nl/?cat=21
Thank you in advance.
Kind regards,
Niels
hi nvdwolk, That appears to
hi nvdwolk,
That appears to be the only h1 on the page.
So
h1{ display:none;}
would do it for that page but will hide any other h1.
So you need to find a way to target just that page like:
.category-21 h1{ display:none;}
using a class on the body tag category-21
Tony, sorry but can you take
Tony, sorry but can you take it a bit further? Where exactly do i put .category-21 h1{ display:none;}?
Cheers,
Niels
@nvdwolk
U'll have to add that to your stylesheet , in any of your folders , do you see a file ending in .css ?? . that would be the file in which you would add .
.category-21 h1{ display:none;}?
I put .category-21 h1{
I got it, thanks for the help!