Status
Für weitere Antworten geschlossen.
M

Mozilla

Guest
ich habe mal wieder ein problem...,

und zwar möchte ich gern ein bild in einer tabellen spalte auf 100% der bildauflösung anzeigen lassen,doch was ich auch tue ich pack es nicht,es ist immer ein stück das nicht das bild hat.
auch mit dem ...width="100%"... gehts nicht denn dann zeigt er nur das bild selbst in 100% an :mad:

hier ist der entsprechende auszug aus der quelldatei:

<table class="bodyline" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<table class="topbkg" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td><a href="{U_INDEX}"><img src="bild.gif" border="0" alt="{L_INDEX}" title="{L_INDEX}" width="985" height="150" /></a></td>
<td align="center" width="100%"> </td>
</tr>
</table>

 

andreaskf

Well-known member
Mitglied seit
29 April 2004
Beiträge
592
Re: Tabelle II

Hallo Mozilla.

Ich vermute Du meinst den Bereich über, vor und neben dem Bild bzw. der Tabelle ?
Wenn ja, dann mußt Du den Seitenbereich im Body Tag einstellen. z.B.:

<body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">

Weiterhin gibst Du beim Bild Pixelwerte des Bildes an. Dadurch wird ebenfals die Größe des Bildes festgelegt. Wenn Dir also am Rand etwas fehlt, dann mußt Du auch diese Werte entsprechend anpassen.
Liege ich falsch, dann meld Dich wieder.

miG

 
M

Mozilla

Guest
Re: Tabelle II

wir haben das problem via e-mail gelöst !

für alle die es interessiert ...

<table class="bodyline" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<table class="topbkg" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td><a href="{U_INDEX}"><img src="bild.gif" border="0" alt="{L_INDEX}" title="{L_INDEX}" width="985" height="150" /></a></td>
<td align="center" width="100%"> </td>
</tr>
</table>


und die lösung des problems war...

<table class="bodyline" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<table class="topbkg" width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td><a href="{U_INDEX}"><img src="bild.gif" border="0" alt="{L_INDEX}" title="{L_INDEX}" width="985" height="150" /></a></td>
</tr>
</table>


also ohne <td align="center" width="100%"> </td>
1f609.png


Danke!

 
Status
Für weitere Antworten geschlossen.
Oben