Typo3 Version 7.3.1
Hello Community Members,
i started a month ago with Typo3 and stopped cause i cant get any further.
i cant get the Menu running with CSS.
it appears always on top of the site.
I defined in the CSS that the menu should appear between the div "header" and the div "contendFrame".
How can i get the Menu into the div container "obj.menu"?
Thanks in advance for your answer.
Amirnitex
Contend:
TS
Haupttemplate = TEMPLATE Haupttemplate { template = FILE template.file = fileadmin/Template/hauptausehen.html marks.TITLE < styles.content.getLeft marks.INHALT < styles.content.get marks.BILDR < styles.content.getRight } page.includeCSS { file = fileadmin/Template/Stylesheet/visual.css } ### Menü ### obj.menu { 10 { special = list special.value = 1 1 { } } 20.1 <.10.1 20.1.expAll = 1 20 { 2 { expAll = 1 } 3 { } } } page.5 < obj.menu page.10 < Haupttemplate
CSS (only part of it)
#obj.menu { float: left; font-size: 14px; font-family: Arial, sans-serif;
html
<html> <head> </head> <body> <div id="rahmen"> <div id="header"> <div class="title">Can't get the Menu running with CSS </div> </div> <div id="menu"> <div id="obj.menu"> </div> </div> <div id="contentFrame"> <div id="spacer2"> </div> <div class="bildr"> ###BILDR### </div> <div id="inhalt"> ###INHALT### </div> <div id="spacer"> </div> </div> <div id="footer"> <a href="****************" style="color:white; background-color:transparent; text-decoration:none">©</a> </div> </div> </body> <style> a:link {color:green; background-color:transparent; text-decoration:none} a:visited {color:green; background-color:transparent; text-decoration:none} a:hover {color:orange; background-color:transparent; text-decoration:underline} a:active {color:green; background-color:transparent; text-decoration:underline} </style> </html>