Isset1988 Posted May 31, 2013 Share Posted May 31, 2013 Hello my friends, I want to create a vertical menu with some categories and some subcategories. My script produses a little strange the unordered list structure. (there is no way to change this) <ul> <li> <a href="#"> Category 1 </a> </li> <li> <a href="#"> Category 2 </a> </li> <ul> <li> <a href="#"> SubCategory 2.1 </a> </li> </ul> <ul> <li> <a href="#"> SubCategory 2.2 </a> </li> </ul> <li> <a href="#"> Category 3 </a> </li> </ul> Can someone help me to create a simple css 3 menu. Thank you ! Link to comment https://forums.phpfreaks.com/topic/278644-unorder-list-css3-simple-menu/ Share on other sites More sharing options...
requinix Posted May 31, 2013 Share Posted May 31, 2013 Hard to do considering how the HTML is invalid. What it tries to do is reasonable but it is still wrong and should be fixed. Note that's "fixed", not simply "changed". Link to comment https://forums.phpfreaks.com/topic/278644-unorder-list-css3-simple-menu/#findComment-1433442 Share on other sites More sharing options...
Isset1988 Posted May 31, 2013 Author Share Posted May 31, 2013 Thank you for your answer requinix.The proper/valid html is: <ul> <li> <a href='#'> Category </a> <ul> <li><a href='#'> Sub Category </a></li> </ul> </li> </ul> Is there any solution without have the subcategory nside the category? Link to comment https://forums.phpfreaks.com/topic/278644-unorder-list-css3-simple-menu/#findComment-1433448 Share on other sites More sharing options...
requinix Posted May 31, 2013 Share Posted May 31, 2013 If the browser corrects your HTML then you can treat it as if it were valid. Use something to inspect the HTML structure of the page (like Chrome's Inspector thing) to make sure the was moved into the . Assuming it does so then you can write your CSS as if the markup was valid. Link to comment https://forums.phpfreaks.com/topic/278644-unorder-list-css3-simple-menu/#findComment-1433456 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.