[Solved] CSS Dropdown Position Error in Firefox [closed]

Remove the float:left on the <ul>: <ul id=”menu” style=”float:left;”> becomes: <ul id=”menu”> Then in your CSS set the <li> to display:block and float:left… .navigation ul li { display: block; /* new */ float: left; /* new */ margin: 0; padding: 0; } … and position the submenu at top:100% ul#menu li ul.sub-menu { display: none; … Read more

[Solved] Count an array php

While this question is poorly worded, I think I understand what you are asking for. Here’s what you should do. I am not all that fluent in php so please make sure that you look over the code snippets that I write instead of copy/pasting them. Find the maximum X and Y values. Instantiate and … Read more