Adding RSS feed image to menu
-
How would I add text that says RSS feed along with my image at:
https://www.freeclassifiedlinks.com/xmlrss2.gif
I want to add this to the top of my menu.
Here is my index.php menu code:
<div id="menu">
<ul>
<li><?php _e('RSS Feed'); ?>
<ul>
<a href="https://www.freeclassifiedlinks.com/enter.html">Elite Links RSS Feed<img src="https://www.freeclassifiedlinks.com/xmlrss2.gif"></a>
</ul>
</li><ul>
<li><?php _e('Subscribe'); ?><form action="https://www.getresponse.com/cgi-bin/add.cgi" method="post" id="GRSubscribeForm">
<table><tr>
<td><label for="GRCategory2">Name</label>:</td>
<td><input type="text" name="category2" size="14" id="GRCategory2" /></td>
</tr><tr>
<td><label for="GRCategory3">E-Mail</label>:</td>
<td><input type="text" name="category3" size="14" id="GRCategory3" /></td>
</tr></table>
<input type="submit" value="Subscribe Now!" />
<input type="hidden" name="category1" value="elinks" />
<input type="hidden" name="confirmation" value="https://www.freeclassifiedlinks.com/elinksblog.html" />
<input type="hidden" name="error_page" value="" />
<input type="hidden" name="misc" value="" />
<input type="hidden" name="ref" value="001" />
</form></li></ul><ul>
<li><?php _e('Categories'); ?>
<ul>
<?php list_cats(0, '', 'name', 'asc', '', 1, 0, 1, 1, 1, 1, 0,'','','','','') ?>
</ul>
</li><li><?php _e('Recent Posts'); ?><ul>
<?php get_recent_posts(); ?></ul>
</li><li><?php _e('Links'); ?>
<ul>
<?php get_links_list('-1', '<li>', '</li>', '<br />'); ?>
</ul>
</li>
- The topic ‘Adding RSS feed image to menu’ is closed to new replies.