maelektro Posted June 8, 2004 Report Share Posted June 8, 2004 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 More sharing options...
DeluXXXe Posted June 8, 2004 Report Share Posted June 8, 2004 oki, denkansto? :wall: grafik erstellen --> slicen --> tabellen erstellen/slices einf?gen (html-dateien) :pst: Link to comment Share on other sites More sharing options...
maelektro Posted June 8, 2004 Author Report Share Posted June 8, 2004 hallodeluxxe das hab ich ja schon alles gemacht, wie beschrieben habe die boxen geteilt- es hakt nur noch beim einf?gen Link to comment Share on other sites More sharing options...
DeluXXXe Posted June 8, 2004 Report Share Posted June 8, 2004 irgendwie versteh ich nicht, was du meinst :grml: was willst du wo einf?gen ? die bilder den code ? Link to comment Share on other sites More sharing options...
maelektro Posted June 8, 2004 Author Report Share Posted June 8, 2004 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? Link to comment Share on other sites More sharing options...
Takeshi Posted June 8, 2004 Report Share Posted June 8, 2004 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? 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 More sharing options...
Takeshi Posted June 8, 2004 Report Share Posted June 8, 2004 nat?rlich kannst du das ganze auch direkt in die box einf?gen: <table> <tr> <td style="background-image:url(xxx);">box text </td> </tr> </table> Anstelle von xxx gibst du den pfad zum Bild ein. Link to comment Share on other sites More sharing options...
nom Posted June 8, 2004 Report Share Posted June 8, 2004 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.