Support » Fixing WordPress » I would like the recent posts to have an icon…

  • I have a WP blog at http://www.fighting-breast-cancer.com

    The theme is “reflections” and this is the way the code looks for the “most recent entries” on the sidebar:

    <td class=”header”>Journal Entries</td>
    </tr>
    <tr>
    <td>

    <ul tag>
    <li tag ><?php get_archives(‘postbypost’,’50’,’html’); ?></end li>
    </ end ul>
    </td>
    </tr>

    Anyway, I would like to put an icon next to each of the “most recent entries” / archives. I want to put a breast cancer ribbon next to each entry title.

    I tried this:

    <li tag> XXX <?php get_archives(‘postbypost’,’50’,’html’); ?></ ending li>
    but all it did was put the XXX one time and it was actually on top of the list (like the first item) instead of next to the item.

    I promise, I searched the archives and couldn’t find anything regarding this specifically.

    Thank you in advance!!!

Viewing 1 replies (of 1 total)
  • Well, icons could be nice, but there are other problems I think should be solved first.
    In Internet Explorer the most recent posts are visible in the sidebar, but in Firefox they are not visible at all. They are plainly missing.

    The reason may well be your mix of <ul><li></li></ul> lists and <table><tr><td></td></tr> tables.

    I think the reason for using tables has been to give a good layout. If you get rid of the tables and just use an unordered list, you can get the layout you wish through Stylesheet rules.

    I’m sure this would make it easier to put an icon next to your recent posts and to make the posts show up in Firefox.

Viewing 1 replies (of 1 total)
  • The topic ‘I would like the recent posts to have an icon…’ is closed to new replies.