« miles's site | Main | A few comments on presentation(s): »
December 05, 2005
screen resolution
I returned home and my site looked normal...
However, my screen resolution is 1600x1200. Is this why my site looked so odd in class? I'm looking at my site in both Firefox and IE here, and it looks completely normal...
and, for neato pulldown in Dreamweaver (for those interested): Insert>Form>Jump Menu. Follow directions...easy.
Posted by ejonese at December 5, 2005 11:16 PM
Comments
Yeah, it looks normal on your 'puter because of your large screen resolution. Two issues arise, though. You have the table data cell's width set to 501 pixels and the image width set to 500 pixels. Those should be set at something lower, probably around 100-200 pixels.
Below is your current code for that table data cell and image....
<!--DWLayoutDefaultTable-->
<tr>
<td width="501" height="378" valign="top" bgcolor="#DEEDFF">
<font color="#FF0000" face="Georgia, Times New Roman, Times, serif">
<font color="#990066" face="Harrington, Harlow Solid Italic, ITC Avant Garde Gothic Demi">
<a href="notes.htm">
<img src="neato-ad.jpg" width="500" height="361" border="0">
</a>
</font>
</font>
</td>
Change it to this.....
<!--DWLayoutDefaultTable-->
<tr>
<td width="150" height="378" valign="top" bgcolor="#DEEDFF">
<font color="#FF0000" face="Georgia, Times New Roman, Times, serif">
<font color="#990066" face="Harrington, Harlow Solid Italic, ITC Avant Garde Gothic Demi">
<a href="notes.htm">
<img src="neato-ad.jpg" width="150" height="361" border="0">
</a>
</font>
</font>
</td>
Hope that helps, some.
Posted by: Ammon at December 7, 2005 07:41 AM