admir_zukic 0 Report post Posted September 26, 2008 My small problem in my CSS web site is to integrate the dropdown submenu. When I integrate the submenu, I have as the result a submenu list .... I have searched already for solutions on the web, but couldn't find the real one .... Share this post Link to post Share on other sites
jlhaslip 4 Report post Posted September 27, 2008 go to http://www.cssplay.co.uk/.Lots of stuff there about drop-downs and fly-out menus for using on a site. Share this post Link to post Share on other sites
ashrafulx11 0 Report post Posted September 28, 2008 Providing the code you are using would be most helpful, especially if the generic solutions you find on the web aren't helping. Share this post Link to post Share on other sites
admir_zukic 0 Report post Posted September 28, 2008 go to http://www.cssplay.co.uk/. Lots of stuff there about drop-downs and fly-out menus for using on a site. thanks a lot for those infos ... I have found a good menu for me and I hope that it will work ... I didn't had the real time to do it ... Its a combined dropdown and flyout ... Share this post Link to post Share on other sites
admir_zukic 0 Report post Posted September 28, 2008 Providing the code you are using would be most helpful, especially if the generic solutions you find on the web aren't helping. actually I haven't used before a js code ... it was just experiment of mine ... I did it like this ...<div id="menu" <ul> <li> ... </li> <li class="submenu"><a href="#"> ... </a> <ul> <li><a href=" ... "> ... </a></li> </ul> </li>but I realised that I actually didn't define the submenu in the css, so when I was clicking on the menu item ... I got a list ubder this item .... Share this post Link to post Share on other sites
Darkelve 0 Report post Posted October 8, 2008 I noticed you did not close the <div> tag at the top... you should or you are going to have problems with it. Also if you put an opening tag, you should put a corresponding closing tag. Not sure if you heard about xhtml, otherwise W3schools has a very good tutorial about it. It's pretty easy to write valid Xhtml and it might save you a lot of problems when designing and developing.In fact you should always validate your Html with something like Html Tidy if you are hand-creating webpages or page elements; sometimes your CSS does not work right when the (x)html code is 'bad'. Personally I use a free Html editor called Html-Kit to create my pages in. Share this post Link to post Share on other sites