Annoying Problem of Aligning CSS Drop Down?

Change #header UL {margin: 0 0 0 30px} to #header > UL {margin: 0 0 0 30px} Problem is that you are adding a left margin of 30px to all ULs inside #header while you probably need it only for the immediate children. Perhaps the same with #header LI.

Also It seemed to have fixed it partially, the text "Link 1", "Link 2" and "Link 3" isn't really aligned with the word products. I should of said this before. Shall I use a margin-left with a minus px?

– Abs Sep 16 '09 at 22:23 See my edit about #header LI. You have given big margins to all LI within #header. – Chetan Sastry Sep 16 '09 at 22:26.

Change #header ul { float:left; left:auto; margin:0 0 0 10px; padding:0; z-index:99; } to #header ul { float:left; left:auto; margin:0; padding:0; z-index:99; } The margin is messing it up.

That has seemed to fix it also, but like I said to Chetan Sastry, it only partially fixes it as I would really like it to be aligned with the Products word. – Abs Sep 16 '09 at 22:25.

To align the products words Try adding the following style: li. Headlink ul li { margin-left:0px! Important; }.

There is a very helpful plugin toolbar called Web Developer that will help troubleshoot CSS issues (and many others). It looks like there is a total of 30px of left margin added to the Link 1 - Link 3 LI elements in these rules: #cssdropdown li. Headlink { width: 60px; float: left; margin-top: 30px; margin-right: 15px; margin-bottom: 0px; margin-left: 15px; } and #header li { list-style-image: none; display: inline; float: left; margin-top: 30px; margin-right: 15px; margin-bottom: 0pt; margin-left: 15px; }.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions