Google
 

PDA

View Full Interactive Version Of This Page : html help


fyrebeadz*
2006-03-21, 9:21pm
I need some basic html help. I have one of those "freebie" web sites. On my homepage I have my buttons with the different catagories. I need or would like to post a photo or two alongside those buttons. I don't know the html code to do this. Can anyone help me? Here is a link to my web-site so you can see where I want it to go. http://www.angelfire.com/crazy4/fyrebeadzstudio/ I also have one other html need. In my auction listings I always have to put one picture on top of the other because I don't know how to write the code so the photo's appear alongside each other. Can anyone give me the code for that as well? I use inkfrog to host my photo's in case you need that info. Thanks so much if anyone can help me! Donna

alex@pappashop.com
2006-03-22, 2:24am
I need some basic html help. I have one of those "freebie" web sites. On my homepage I have my buttons with the different catagories. I need or would like to post a photo or two alongside those buttons. I don't know the html code to do this. Can anyone help me? Here is a link to my web-site so you can see where I want it to go. http://www.angelfire.com/crazy4/fyrebeadzstudio/ I also have one other html need. In my auction listings I always have to put one picture on top of the other because I don't know how to write the code so the photo's appear alongside each other. Can anyone give me the code for that as well? I use inkfrog to host my photo's in case you need that info. Thanks so much if anyone can help me! Donna

Use tables, this will give you side by side tables, Use the same code for side by side photos
<table border="0" cellpadding="0" style="border-collapse: collapse">
<tr>
<td>ADD IMAGE HERE</td>
<td>MENU BUTTONS HERE</td>
</tr>
</table>

If you want it centered on your page add this just above <table> tag
<div align="center">

fyrebeadz*
2006-03-22, 10:02am
Thanks so much ALex! Donna