Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Text Overlaping in Orderd List … Why? Re: Text Overlaping in Orderd List … Why?

#125787

You have a negative margin top in your stylesheet for both ordered and unordered lists.
` ul li { margin-left: 23px; margin-top: -10px; }
ol, ol li { margin-left: 18px; margin-bottom: 0px; margin-top: -10px; margin-right: 0px;
padding: 0px; list-style: decimal-leading-zero;; }`

Try replacing your list of margins with this…
` margin: 0 0 0 18px;`

Adjust as necessary!