I searched the forum for a solution (I thought I saw that some time ago) but can't find it anymore.
By now I tried to use: {NAV_HORIZ_DD:ID,Level depth} and read the thread of course.
So the problem is, what I need is this:
But what I got is far from that.
The biggest problem are the colors but I also don't get the spacing between the buttons.
btw. the drobdown-section will be only some grayish blocks maybe whith a colored line above. but I think I can achieve that.
The CSS is almost the same as the original
Code: Select all
#menu_container {
margin: 0 0 0 0; /* 100px only for testing - default = 0 */
position: relative;
width: 735px;
height: 21px; /* ORG 20px */
z-index: 1000;
}
/* Get rid of the margin, padding and bullets in the unordered lists */
/* margin und padding auf 0, Aufzählungszeichen der unsortierten Liste unterdruecken */
#pmenu, #pmenu ul {
padding: 0;
margin: 0;
list-style-type: none;
}
/* Set up the link size, color and borders */
/* Einstellen der Groeszen, Farben und Rahmen fuer die Links */
#pmenu a, #pmenu a:visited {
display: block;
/* width: 120px;
*/ font-size: 13px;
font-weight:bold;
color: #fff;
height: 21px; /* ORG 25px */
line-height: 20px; /* ORG 24px */
text-decoration: none;
text-indent: 0px;
border: #3b3bcc solid;
border-width: 3px 0px 0px 0px;
}
Do I have to use frontend_render? (well, I'm not so into code)
Thanks
Murphy