OGGordon
04-15-2011, 11:16 AM
Hey guys,
so I made this authorbox based on this tutorial:
http://wpzine.com/how-to-create-an-author-box/#comment-12483
However, it does not display correctly on my website. It displays the gravatar image in one line and the description under it. How can I make it even on one line?
Here is the code:
<div class="author-box">
<div class="author-left">
<div class="author-pic"><?php echo get_avatar( get_the_author_email(), '80' ); ?></div>
</div>
<div class="author-right">
<div class="author-name"><?php the_author_meta( "display_name" ); ?></div>
<div class="author-bio"><?php the_author_meta( "user_description" ); ?></div>
<div class="author-url"><?php if (get_the_author_url()) { ?><a href="<?php the_author_url(); ?>">Visit <?php the_author(); ?>'s website</a><?php } else { } ?></div>
</div>
<div class="clear"></div>
</div>
style.css
.author-box { padding: 10px; background: #ccc; border: 1px solid #333;}
.author-left {float:left; width: 80px; margin: 0 15px 0 0;}
.author-right {float:left; font-size: 13px; margin: 5px 0 0 10px;}
.author-pic {border: 1px solid: #ccc;}
.author-name {font-weight:bold;}
.author-bio {padding: 5px 0 5px 0;}
.author-url {color: #555;}
.author-url a {color: #000;}
.author-url a:hover {color: #333;}
.clear {clear:both}
And here is the website:
http://einkaufshungrig.de/2011/04/angebot-des-tages-beim-t-online-shop-netzwerkadapter-netgearxeb1004-100pes-fur-nur-59e/
Thank you guys in advance for helping me!
so I made this authorbox based on this tutorial:
http://wpzine.com/how-to-create-an-author-box/#comment-12483
However, it does not display correctly on my website. It displays the gravatar image in one line and the description under it. How can I make it even on one line?
Here is the code:
<div class="author-box">
<div class="author-left">
<div class="author-pic"><?php echo get_avatar( get_the_author_email(), '80' ); ?></div>
</div>
<div class="author-right">
<div class="author-name"><?php the_author_meta( "display_name" ); ?></div>
<div class="author-bio"><?php the_author_meta( "user_description" ); ?></div>
<div class="author-url"><?php if (get_the_author_url()) { ?><a href="<?php the_author_url(); ?>">Visit <?php the_author(); ?>'s website</a><?php } else { } ?></div>
</div>
<div class="clear"></div>
</div>
style.css
.author-box { padding: 10px; background: #ccc; border: 1px solid #333;}
.author-left {float:left; width: 80px; margin: 0 15px 0 0;}
.author-right {float:left; font-size: 13px; margin: 5px 0 0 10px;}
.author-pic {border: 1px solid: #ccc;}
.author-name {font-weight:bold;}
.author-bio {padding: 5px 0 5px 0;}
.author-url {color: #555;}
.author-url a {color: #000;}
.author-url a:hover {color: #333;}
.clear {clear:both}
And here is the website:
http://einkaufshungrig.de/2011/04/angebot-des-tages-beim-t-online-shop-netzwerkadapter-netgearxeb1004-100pes-fur-nur-59e/
Thank you guys in advance for helping me!