I need a little help... Please look at the footer on my website http://yoursalesresume.com The footer is in the image file.. My question is this how can I change the footer, I want to add several links on there. This site is PR3 and I want to have a couple links of it. Can somebodt explain how I can do this or where I maight be able to put some links without making it look junky. Thanks a lot..
Here, do this. Your current coding. <a href="http://careerlist.info" title="Career List">Career List</a></td> <td width="1" id="Sep"></td> <td width="185" align="center" valign="top" id="LeftColumn"><img width="154" src="images/stepsbanner.jpg" height="601" /></td> </tr> </tbody> </table> <a href="http://public-newsgroups.com " title="Newsgroup Reader">Newsgroup Reader</a></td> </tr> <tr> <td id="Footer"></td> HTML: The 2 links you got are Career Lists and Newsgroup reader. Put those in the td where the id is footer. Like this. </td> <td width="1" id="Sep"></td> <td width="185" align="center" valign="top" id="LeftColumn"><img width="154" src="images/stepsbanner.jpg" height="601" /></td> </tr> </tbody> </table> </td> </tr> <tr> <td id="Footer"> <a href="http://careerlist.info" title="Career List">Career List</a> <a href="http://public-newsgroups.com " title="Newsgroup Reader">Newsgroup Reader</a> </td> HTML: You will want to position them with the CSS file. If you need more help, I might not return to this thread so PM if you want me to come back to it.
Another way about it if you're planning on adding more links- Take your 2 current links (Career List,News..) and copy as shown here ; </table> <div class="footerLinks"> <a href="http://careerlist.info" title="Career List">Career List</a> <a href="http://public-newsgroups.com " title="Newsgroup Reader">Newsgroup Reader</a> <a href="#">Extra Link</a> </div> </td> </tr> <tr> <td id="Footer"></td> HTML: and then add this to within your style.css file .footerLinks { display: block; background: #fff; height: 23px; line-height: 20px; font-size: 11px; padding: 0 5px; } .footerLinks a { color: #008ec6; margin: 0 5px; padding: 3px; text-decoration: none; } .footerLinks a:hover { text-decoration: underline; } Code (markup): I think that should work fine for you, there are plenty of other ways to doing this. PM me and I might be willing to share more for a link