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.

4 Responses to “FAQ: How do I remove my Bio Picture altogether?”

  1. On Sarah said:

    Whoops! I decided I want my bio pic to appear again. I see where the code goes in style.css, but at what line should I re-insert the code in bio.php?

  2. On Jared said:

    @Sarah: paste it in right after this line:

    <div id=”indexbio”>

  3. On jenny gg said:

    so i’ve removed the bio pic border, but now there is no space between the flashshow and my text in the bio area.

    how do i just add some space between them?

  4. On Jared said:

    @jenny gg: I just looked at your blog and it looks like you got it figured out. Are you all set?

Leave a Reply