Googling and searching stack overflow did not return any results that I could recognize, so forgive me if this has been asked before...
I have drop down main menu wh
padding-left is what controls the indentation of ul not margin-left.
Compare: Here's setting padding-left to 0, notice all the indentation disappears.
ul {
padding-left: 0;
}
- section a
- one
- two
- three
- section b
- one
- two
- three
and here's setting margin-left to 0px. Notice the indentation does NOT change.
ul {
margin-left: 0;
}
- section a
- one
- two
- three
- section b
- one
- two
- three