ReneWolf Posted June 29, 2009 Report Share Posted June 29, 2009 ich versuche ein dropdownmenü für die kategorien in veyton einzubinden. eigentlich ein simples menü aber das einbinden bereitet mir kopfschmerzen ^^ also das menü sieht folgendermaßen aus: <div class="menu"> <ul> <li><a href="#">Dropdown<!--[if gte IE 7]><!--></a><!--<![endif]--> <!--[if lte IE 6]><table><tr><td><![endif]--> <ul> <li><a href="#" title="Link">Link</a></li> </ul> <!--[if lte IE 6]></td></tr></table></a><![endif]--> </li> </ul> </div> [/HTML] css dazu [HTML] .menu ul{ list-style-type:none; padding:0; margin:0; } .menu li{ float:left; position:relative; z-index:100; } .menu table{ position:absolute; border-collapse:collapse; z-index:80; left:-1px; top:25px; } .menu a, .menu :visited { display:block; font-size:10px; width:149px; padding:7px 0; color:#fff; background:#4d4d4d; text-decoration:none; margin-right:1px; text-align:center; font-family:verdana, sans-serif; } .menu :hover{ color:#fff; background:#656565; } .menu ul ul { visibility:hidden; position:absolute; width:149px; height:0; } .menu ul li:hover ul, .menu ul a:hover ul{ visibility:visible; } [/HTML] mein vorgehensweise bis jetzt: ich habe die box_categories.html angepasst: [HTML] <h2 class="boxheader">{txt key=TEXT_BOX_TITLE_CATEGORIES}</h2> <ul> {foreach name=aussen item=module_data from=$_categories} <!--[if lte IE 6]><table><tr><td><![endif]--> <li class="level{$module_data.level}{if $module_data.active} active{/if}"><a href="{$module_data.categories_link}" title="{$module_data.categories_heading_title}">{$module_data.categories_name}</a></li> <!--[if lte IE 6]></td></tr></table></a><![endif]--> {/foreach} </ul> [/HTML] ich hoffe mal das ist korrekt so. ok, nur komme ich jetzt mit der index.html nicht weiter. ich möchte das es mir die mainkategorien in der navigation horizontal anzeigt und beim mouseover die subkategorien anzeigt. könnte mir pls jemand helfen? Link to comment Share on other sites More sharing options...
ripley_one Posted July 23, 2009 Report Share Posted July 23, 2009 Hallo! Bist du in deinem Vorhaben schon vorangekommen? Das gleiche verusche ich auch gerade zu programmieren. Allerdings nur mit einigen Kategorien, nicht mit sämtlichen Hauptkategorien... Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.