Miloslav Krejza
Miloslav Krejza

Reputation: 161

How to remove footer from wordpress "powered by wordpress"

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

Answers (2)

Miloslav Krejza
Miloslav Krejza

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

mayersdesign
mayersdesign

Reputation: 5310

Very likely edit the footer.php file in your themes directory

Upvotes: 1

Related Questions