All Good Things Must Come To An End

As you all know, I have been doing WordPress plugins and supporting it for the past 6 years. These 6 years of my life, I have been through my polytechnic education, my national service as well as my university education.

I just graduated from university in December 2009 and have been looking for full-time jobs. I am offered a full-time job and will be starting work on 1st February 2010.

I regret to say that I am NOT ABLE to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

However, I WILL still update my plugins whenever I can and you still can report bugs to me via email and I will try to fix it.


Author Topic: ALIGN the print/email with the post date  (Read 2558 times)

0 Members and 1 Guest are viewing this topic.

Offline jjfighter1

  • Newbie
  • *
  • Posts: 2
    • View Profile
ALIGN the print/email with the post date
« on: 17 February 2008, 10:01 »
Next question.  I am desiring to have the date and the email and print icons on the same row.  So aligned to the left would be the date and then the email/print would be aligned to the right.
I am using the code below but so far they are aligned to the left and right appropriately but they are not on the same line.  What am I missing?


Quote
<h1><?php the_title(); ?></h1>
         
         <div class="date">
            <p><?php the_time('F j, Y'); ?>


<div style="float: right;"><?php if(function_exists('wp_email')) { email_link(); } ?>
<?php if(function_exists('wp_print')) { print_link(); } ?></div>
<br style="clear: both;">                                  </div></p>




         <?php the_content(__('Read more'));?><div style="clear:both;"></div>



Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,536
    • View Profile
  • WordPress Version: WordPress 2.9.x
  • Theme Name: lesterchan.net v3.4
Re: ALIGN the print/email with the post date
« Reply #1 on: 17 February 2008, 14:02 »
This is not within my support scope, but out of good will. Here you go:
Code: [Select]
<div style="float: right;"><?php if(function_exists('wp_email')) { email_link(); } ?></div>
<div style="float: left;"><?php if(function_exists('wp_print')) { print_link(); } ?></div><br style="clear: both;">     

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

Offline Leandro Guedes

  • Newbie
  • *
  • Posts: 1
    • View Profile
Re: ALIGN the print/email with the post date
« Reply #2 on: 28 August 2009, 15:03 »
I'm using Arthemia in my www.astronomia.blog.br . I'm moving from an old blog to this new one, so it is not yet complete.

GaMerz, your help, despite it's out of your scope is being useful to me also.
May I ask you in what file I should put these lines?

Thanks.

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,536
    • View Profile
  • WordPress Version: WordPress 2.9.x
  • Theme Name: lesterchan.net v3.4
Re: ALIGN the print/email with the post date
« Reply #3 on: 28 August 2009, 16:46 »
Using the default theme as a guide, index.php, archive.php and single.php. For your theme you might want to contact your theme author instead as different themes are coded differently.

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

Offline morcom

  • Newbie
  • *
  • Posts: 1
    • View Profile
  • WordPress Version: WordPress 2.8.x
  • Theme Name: Panorama
Re: ALIGN the print/email with the post date
« Reply #4 on: 24 November 2009, 18:08 »
This is not within my support scope, but out of good will. Here you go:
Code: [Select]
<div style="float: right;"><?php if(function_exists('wp_email')) { email_link(); } ?></div>
<div style="float: left;"><?php if(function_exists('wp_print')) { print_link(); } ?></div><br style="clear: both;">     


Thanks GaMerZ the code fix works great