remove_proudly_powered_by_wordpress_twenty_fourteen_theme

This is an old revision of the document!


Remove "Proudly Powered By WordPress" from Twenty Fourteen Theme

  1. Log into your WordPress site as an administrator
  2. On the left menu, go to “Appearance” and select “Customize”
  3. In the customizer, select “Additional CSS
  4. Insert the following (cascading style sheet) code
.site-info {display:none;}

Then click “Publish”

Escape (X-out) from the Customizer.

Return to the front end of the website and observe the footer area. The text “Proudly Powered By WordPress” should be hidden. How does this work? In the footer.php page of the WordPress Twenty Fourteen Theme, there is a class variable labeled “site-info” and this CSS code suppresses the content of that class.

You may have already inserted some CSS code which changes the margins in order to center the entire site on the user's screen. Leave that code there and put the .site-info code below it.

.site {
margin: 0 auto;
}

.site-info {display:none;}
remove_proudly_powered_by_wordpress_twenty_fourteen_theme.1696006978.txt.gz · Last modified: 2023/09/29 17:02 by wikiadmin