Hi Folks,
Auf meiner Seite habe ich Produktbezogene Bilder untergebracht. Obwohl der "Content" Bereich groß genug ist (ca. 550px) wird selbst bei Bildern mit einer Breite von ca 500 px jedesmal das Menü auf der linken Seite gestaucht.
Vielen Dank für eure Hilfe.
Grüße
Werner
Bilder zersprengen das Layout
hier kommt der MAIN partdexter wrote:zeig mal den code
Code: Select all
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="100%">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
<td><p>{CONTENT}</p>
<p align="right">{DATE_ARTICLE}</p></td>
</tr>
</table></td></tr>
<tr>
<td height="100%"><div align="right"><img src="img/leer.gif" width="1" height="10"></div></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td align="right" valign="bottom"><div align="right">[BACK]<img src="img/article/back_link_0.gif" border="0">[/BACK] <a href="#" target="_top" title="goto top of the page"><img src="img/article/top_link_0.gif" border="0"></a> [PRINT]<img src="img/symbols/print_icon.gif" width="44" height="9" border="0" title="open optimized page for printing">[/PRINT]</div></td>
</tr>
</table>
- Oliver Georgi
- Site Admin
- Posts: 9907
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
Warum so kompliziert?
mach es so
Das Ausrichten der Back-Button direkt am unteren Rand ist problematisch. Ein <td height="100%"> ist nicht W3C konform - möglicherweis ist sinnvoll, das in den Footer-Bereich einzubauen.
Verschachtel Deine Tabelle nicht so unnötig.
Oliver
mach es so
Code: Select all
<div style="padding:5px 5px 5px 5px;margin:0;">{CONTENT}</div>
<div style="text-align:right;padding:5px 5px 5px 5px;margin:0;">{DATE_ARTICLE}</div>
<div style="text-align:right;padding:5px 5px 5px 5px;margin:0;margin-top:10px;">
[BACK]<img src="img/article/back_link_0.gif" border="0">[/BACK]
<a href="#" target="_top" title="goto top of the page">
<img src="img/article/top_link_0.gif" border="0"></a>
[PRINT]<img src="img/symbols/print_icon.gif" width="44" height="9"
border="0" title="open optimized page for printing">[/PRINT]</div>
Verschachtel Deine Tabelle nicht so unnötig.
Oliver