Reputation: 161
I wonder how can I remove footer which contains "powered by wordpress". I've setup this page and in the bottom of it you can see "powered by wordpress". Web page
Upvotes: 2
Views: 279
Reputation: 161
I found the solution. The footer provides html class.
class="site-info"
so i edited css file as that
.site-info {
display: none;
}
Upvotes: 1
Reputation: 5310
Very likely edit the footer.php file in your themes directory
Upvotes: 1