Author Profile Page Needs Some Sort of Width Adjustment
-
You can view my authors page here https://www.aquaculturetalk.com/author/admin/
The issue is that the profile information seems to be a bit too wide for the page. I am not a programmer so fixing this is beyond me.
Below is the code from my author.php page, I am guessing I need to add a div someplace but am clueless as to how or where.
Any help on this will be greatly appreciated.
Thanks, Mike
<?php get_header(); ?>
<div class=”apost”>
<div class=”head”></div>
<div class=”content”>
<div id=”content” class=”narrowcolumn”>
<!– This sets the $curauth variable –>
<?php
if(isset($_GET[‘author_name’])) :
$curauth = get_userdatabylogin($author_name);
else :
$curauth = get_userdata(intval($author));
endif;
?>
<h3>About: <?php echo $curauth->display_name; ?></h3>
<p>Website: user_url; ?>”><?php echo $curauth->user_url; ?></p>
<p>Profile: <?php echo $curauth->user_description; ?></p>
<h3>Posts by <?php echo $curauth->display_name; ?>:</h3>-
<!– The Loop –>
- <h2>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h2>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?><?php endwhile; else: ?>
<?php endif; ?>
<!– End Loop –></div>
</div>
<ul class=”foot”>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
- The topic ‘Author Profile Page Needs Some Sort of Width Adjustment’ is closed to new replies.