Right side column of website not aligned properly

G

Guest

Question: In my website, on the right column, i have two boxes with
information regarding our website. The top right column indicates shipping
infomation, the box below it reflects items we have on sale. The problem is
the box that indicates the shipping information is misaligned with the box
below it (It is further to the left). The odd thing is ; it's not like this
on all pages but it is on most, and on my web on my local machine it looks
fine, it just looks this way on the internet! It was fine before. I just made
few chages to our pricing and published the changes and noticed this. How can
I fix this? Any ideas? Thanks!

Webiste: http://www.healthsourcenutrition.com

Henry Contreras
 
S

Stefan B Rusynko

You need to make your include pages consistent
You have
<td valign="top" width="200" style="text-align: center">
<img border="0" src="images/trans_spacer.gif" width="200" height="10">
<!--webbot bot="Include" u-include="includes/breakout.htm" tag="BODY" -->
<p>&nbsp;</p>
<!--webbot bot="Include" u-include="includes/company.htm" tag="BODY" -->
<p>&nbsp;</p>
</td>

But breakout.htm and company.htm are not the same size & alignment tables

PS
It would be better to put both in a table in separate cells instead of relying in the empty p tags


<td valign="top" width="200" align="center">
<table width="200" border="0">
<tr><td valign="top" width="200" align="center">
<img border="0" src="images/trans_spacer.gif" width="200" height="10">
</td></tr><td valign="top" width="200" align="center">
<!--webbot bot="Include" u-include="includes/breakout.htm" tag="BODY" -->
</td></tr><td valign="top" width="200" align="center">
<!--webbot bot="Include" u-include="includes/company.htm" tag="BODY" -->
</td></tr></table>
</td>


--




| Question: In my website, on the right column, i have two boxes with
| information regarding our website. The top right column indicates shipping
| infomation, the box below it reflects items we have on sale. The problem is
| the box that indicates the shipping information is misaligned with the box
| below it (It is further to the left). The odd thing is ; it's not like this
| on all pages but it is on most, and on my web on my local machine it looks
| fine, it just looks this way on the internet! It was fine before. I just made
| few chages to our pricing and published the changes and noticed this. How can
| I fix this? Any ideas? Thanks!
|
| Webiste: http://www.healthsourcenutrition.com
|
| Henry Contreras
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top