I'm not entirely sure if this is what you want or not. Please give it a try and let us know.
games.html
~ line 34, delete the red property from the middle of this line:
Code:
<div style="overflow:auto; width:1024px; height:1000px">
Delete lines 51 and 64; a break tag inside a list but outside of a list item is invalid code.
Code:
<br class="clear" />
Move the </ul> tag from line 51 up a few lines and put it below line 42.
The commented out junk seems to be junk.
Change the id "games" to "gamesMenu" (the id conflicts with #mainMenu li#games)
Code:
<ul id="gamesMenu">
Move #gamesMenu so it sits just beneath #mainMenu
Code:
<ul id="mainMenu">
<li id="home"><a href="home.html">Home</a></li>
<li id="about"><a href="about.html">About</a></li>
<li id="games"><a href="#">Games</a></li>
<li id="news"><a href="news.html">News</a></li>
<li id="presskits"><a href="presskits.html">Press Kits</a></li>
<li id="faq"><a href="faq.html">FAQ</a></li>
<li id="contact"><a href="contact.html">Contact</a></li>
</ul>
<ul id="gamesMenu">
<li id="mba"><a href="music_block_attack.html">music block attack</a></li>
<li id="cc"><a href="CC.html">crystal catacombs</a></li>
<li id="cb"><a href="cuddlybears.html">cuddly bears</a></li>
<li id="smw"><a href="snowmanwars.html">snowman wars</a></li>
<li id="ac"><a href="arrow.html">arrow climber</a></li>
</ul>
At the bottom of the page, add these two missing tags */
Code:
</div> /* add this tag */
</body> /* add this tag */
</html>
games.css
Change all of the unordered list #games in the lower half of the page to #gamesMenu. Conflicts with #mainMenu li#games
At the top of the #gamesMenu code (about line 256)...
Delete this:
Code:
/*#games{
width:1100px; /*---Give our UL a width ---*/
/*list-style:none; /*--- Makes the bullets go away ---*/
/*margin:0; /*--- Take out any default margin on the UL tag ---*/
/*margin-top: 5px;
margin-left: 125px;
padding:0; /*--- Take out any default padding on the UL tag ---*/
}
Add this in its place:
Code:
#gamesMenu {
clear:both;
list-style:none;
padding:150px 0 0 160px;
margin:0;
}
Delete this margin-left:
Code:
#gamesMenu li {
position: relative;
float:left; /*--- Make the list go horizontal ---*/
margin-left:30px; /*--- Give spacing in between list items ---*/
}
Bookmarks