Frequently Asked Questions:

FAQ: How do I remove my Bio Picture altogether?

If you want to remove your bio picture, there are two steps. In your WP Admin area, go to “Design” (”Presentation” in old versions of WordPress) –> “Theme Editor”. Then,

First, click on “bio.php” to edit that file. Look for this chunk of code and then delete it. Be careful to only delete these two lines.

<!– path to filename of bio pic –>
<img src=”<?php bloginfo(’template_directory’) ?>/images/biopic.jpg” width=”215″ height=”312″ id=”biopic” />

Next, click on “Stylesheet (style.css)” and look for this chunk of code at line 282:

.bio { /*floats and adds width and margins to bio text area*/
margin: 40px 20px 40px 40px;
float: left;
width: 610px; /*remove this line if no biopic, chane 20px to 40px 2 lines up too!*/
display: inline;
}

Change the second and fourth line of that chunk so it looks like this:

.bio { /*floats and adds width and margins to bio text area*/
margin: 40px 40px 40px 40px;
float: left;
display: inline;
}

Click update file to save your changes, and refresh your browser to check your work.

Questions? Instead of emailing for support, leave a comment below so everyone can benefit from any clarification.

Leave a Reply