I am using a Wordpress Template and I want to change/delete the watermark which is in the footer. Picture here In the template I cannot do this so I tried it with css. I tried it with: footer p designed-by { display: none; }
The class where the watermark is in
CodePudding user response:
To target the designed-by
class, your selector needs to be writen as
.designed-by
(You’re missing a period.)