#Drop down menu in nav bar won't work (send help)

1 messages · Page 1 of 1 (latest)

silver void
#

which works without the rest of the lay out but not with it
I'm not sure to understand what you're saying

Anyway, look at this

#

Also, I see in your code that you have lots of id="left". Ids must be unique to work.

Use class if you want to apply that to multiple elements. Ps. You can have multiple classes per elements.

glad swift
#

Thank you!

glad swift
silver void
#

Let me check your code.

#

The quick fix for that would be to remove the overflow: hidden in your ul.

But I also I see is that you misplaced some of your elements.

In general, you want to place things in your code where they should appead in the page.

You want your menu to be in your page's header right? If so, you should place it there (inside <div class="header"> - well place the ul there) in your code. You had to use position: absolute which is often something you want to avoid.

Since you use lots of absolute and specific placement, overflow hidden, it might break some things but everything is pretty easily fixable.

Don't be afraid to have divs to give different parts properties. For example, you want some padding on part of the content and the other part your don't want any (talking about the header content and menu)

#

Very few changes but should make things a bit easier to work with

#

Anyway, you take the tips you want. You can also quickly fix it but I'd recommend spending a bit more time making things better to learn more about html & css and get a better grade.