Menu not working

HTML, CSS and anything else that deals with client side capabilities.

Moderator: General Moderators

Post Reply
Rosaka
Forum Newbie
Posts: 13
Joined: Mon Jan 10, 2011 2:00 pm

Menu not working

Post by Rosaka »

I want to make a menu, that has submenus, when an item with a submenu is highlighted, those menus are shown (or I am trying to just have the submenus shown but below and to the right abit of parent item) Cant seem to get it working.

http://img153.imageshack.us/f/menujk.jpg/

Any Idea why my menu is is looking like that? my HTML and CSS seems fine to me? The menu height also seems not to be working? the footer is in the middle.

HTML
http://pastebin.com/bi1przPk
CSS
http://pastebin.com/nCygCN8P

Am pretty new to website design, thx in advance!
User avatar
Jade
Forum Regular
Posts: 908
Joined: Sun Dec 29, 2002 5:40 pm
Location: VA

Re: Menu not working

Post by Jade »

Add this to your footer div:

[text]
#footer {
clear: left;
text-align:center;
}
[/text]

If that doesn't fix it you can also try:

[text]
clear: both;
text-align:center;
[/text]
Post Reply