This is a discussion on "CSS help" within the Web Page Design section. This forum, and the thread "CSS help are both part of the Design Your Website category.
|
|
|
|
|
![]() |
||
CSS help
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
#1
|
|||
|
|||
|
Hi
I've used this tutorial to build my vertical dropdown menu. It's excelent but I can't make a sub-menu within another sub-menu, why? can anybody help me? here is my CSS code: Quote:
|
|
|
|
#2
|
|||
|
|||
|
Re: CSS help
moved thread to css forum
|
|
#3
|
||||
|
||||
|
Re: CSS help
These rules:
li ul li a { padding: 6px 6px; } /* Sub Menu Styles */ li:hover ul, li.over ul { display: block; } /* The magic */ only specify the rules for one sub-level. I'm not sure how it might work out, but if you double up your "cascade", it might work... For example: li ul li ul li a { padding: 6px 6px; } /* Sub Menu Styles */ li:hover ul li ul, li.over ul li ul { display: block; } /* The magic */ But... this is all a guess... |
|
#4
|
|||
|
|||
|
Re: CSS help
Thanks anyway, but unfortunately did not work
If someone knows this please help me. Thanks Last edited by simonsays; Dec 10th, 2005 at 13:17. |
![]() |
| Tags |
| css, help |
| Thread Tools | |
|
|