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.
<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:
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:
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.
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?
@Sarah: paste it in right after this line:
<div id=”indexbio”>
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?
@jenny gg: I just looked at your blog and it looks like you got it figured out. Are you all set?