|
Hello KKHAN,
You style that menu only as deep as ul li ul. When it goes another level deeper, you need to style that as well - ul li ul li ul li
It's kind of hard to follow because your CSS isn't exactly intuitive.
The first level is styled by #headerNav ul li
The second level by #headerNav li ul
Since you don't specifically style
#headerNav ul li ul li
or
#headerNav ul li ul li ul
or
#headerNav ul li ul li ul li
they inherit the styling of the parent ul/li's
Does that make any sense at all?
|