hallo rezeptionist
das ist in der tat ein bisschen komlizierter
ich will das folgende realisieren:
ich habe ein text(html) modul
in ein template via container gestellt. Wie du sehen kannst ist da auch eine <table> mit scroll via css.
Code: Alles auswählen
<PRE><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>BLATTMANN "Rock Accordion"</title>
<link href="css/scroll_table.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#112233">
<table bgcolor="#000000" cellspacing="0" width="300">
<tr>
<td class="scroll">
<div style="width: 100%; height: 100%; overflow: auto;">
<container id="13" name="container4" types="Content" default="">Container4</container>
</div>
</td>
</tr>
</table>
</body>
</html>
</PRE>
den css code habe ich in die script abteilung von contenido gestellt. Ich rufe es ja im template wieder auf.
Code: Alles auswählen
td.head
{
width: 300px;
height: 18px;
font-family: verdana;
font-size: 10px;
font-weight: bold;
color: #ccddee;
background-color: #1e598b;
}
td.scroll
{
width: 300px;
height: 100px;
font-family: verdana;
font-size: 11px;
color: #ccddee;
background-color: #203b59;
scrollbar-base-color: #203b59;
scrollbar-3d-light-color: #a0bbd9;
scrollbar-arrow-color: #a0bbd9;
scrollbar-darkshadow-color: #203b59;
scrollbar-face-color: #203b59;
scrollbar-highlight-color: #809bb9;
scrollbar-shadow-color: #809bb9;
scrollbar-track-color: #203b59;
}
das funkioniert mit einem kleinen iexplorer fehler.
es hat aber den nachteil das ich den scroll hart coden muss im template. diesen teil (<table> bis </table> siehe template code oben) hätte ich in ein html file im contenido scripteditor legen wollen und dieses html file dann via einem modul aufrufen. so hätte ich den vorteil das ich dieses modul in normalen layouts irgendwo plazieren könnte. ein container in einem container... !?
das ich so nun im backend im artikel editor meine einträge erweitern kann
und diese noch scrollbar habe ist vermutlich klar.... ich will es in die nachfogende seite bauen für konzerttermine.
http://www.ruedi-blattmann.com/blattman ... ontent.php
wenn das geht wie kann ich dieses html file in einem modul aufrufen bzw. anziehen
grüsse
bladi