Jump to content
xt:Commerce Community Forum

Boxen


maelektro

Recommended Posts

hallo xtc ler,

ben?tige einen kleinen denkansto?-ich m?chte boxen mit abgerundeten ecken haben-

habe auch eine box bestehend aus drei teilen

oben-mitte-unten .gif

ich weiss das ich es im html template boxen ?ndern mu?-

nur wo f?ge ich die img.src ein ?

danke f?r eine idee

Link to comment
Share on other sites

Originally posted by maelektro@Jun 8 2004, 21:58 PM

hallo

?hnlich wie hier ist

box_oben.gif

mitte.gif

unten .gif erstellt worden

wie lade ich die img.src in die box html datei?

box.jpg

das machst du am besten ?ber css ( geht das ?berhaupt anders??? )

code in der box:

<table>

<tr>

<td class="meinhintergrundbild">box text

</td>

</tr>

</table>

in der sytlesheet datei:
TD.meinhintergrundbild {  

  background-image:url(http://xxx.de/xx.gif);  

}

:?:

Link to comment
Share on other sites

oder direkt in html

Beispiel:

<table width="160" border="0" cellpadding="0" cellspacing="0" background="{$tpl_path}img/box_oben.gif">

 <tr>

  <td class="infoBoxHeading">{#heading_categories#}</td>

 </tr>

 <tr>

  <td background="{$tpl_path}img/mitte.gif">{$BOX_CONTENT}</td>

 </tr>

 <tr>

  <td><img src="{$tpl_path}img/unten.gif"</td>

 </tr>

</table>

und Bilder in img-Ordner des Templates laden.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...