Problem with drop down menu

Hello, i have problems with drop down menu. For some reason i get one empty list on hovered menu for what ever reason.
problem

Here’s JSfiddle link:
https://jsfiddle.net/Begichh/g3a1o5c6/

The issue seems to be that you are including the list inside the <a> tag.

1 Like

Hello @Bego96!

It seems like a HTML semantics issue.

On your outter unordered list (ul) you have, Home, Works and About.
I suppose you are using an anchor element (a) in each one of them because you will want to redirect the user to a page in the future.

However, in Works you are only closing the anchor (a) tag after your inner unordered list (ul).
Therefore, it is probably misinterpreting your inner anchors (a) - Adobe Photoshop, Adobe Ilustrator, Adobe XD, HTML and CSS.

image

What you can do here is just close the anchor (a) tag right after Works.
Like this:

image

Hope it helps!

1 Like

Oh yeah my bad, my blind ass didnt see a typo xd thanks!