Hi guyes. I installed User Photo plugin that allows to show an authors photo. So far so good, but I want it to be displayed not after the post date, but rather parrallel to the author's name and post date.
The following image explains it all :
http://imageshack.us/photo/my-images/710/17463280.jpg
It does not appear like the photo has its own CSS class. Can I add custom class for the photo, then tweak it to accomplish what I am after?
It would be great if you please also tell me what how would the code look like if I want to resize the image when it is displayed.
The website where you can see it:
http://kuttabna.net
The code I am using to display that chunk:
<h2 class="entry-title"></a><a>" rel="bookmark" title="<?php printf(__('رابط %s', 'framework'), get_the_title()); ?>"> <?php the_title(); ?></a></h2>
<!--BEGIN .entry-meta .entry-header-->
<div class="entry-meta entry-header">
<span class="published"> كتبها
<?php the_author_posts_link(); ?> </span>
<span class="meta-sep">·</span>
<span class="published"> في <?php the_time( get_option('date_format') ); ?>
<?php userphoto_the_author_thumbnail() ?></span>
<!--END .entry-meta entry-header -->
</div>