I’m trying to make an ordered list (ol) and separate each count by, say about 10px.
ie.
Item one
Item two
I was using the <br> tag until I went to validate the page under W3C and it came up with errors. When I tried it the way that the “tidy” showed (…<br /></li>) it wouldn’t work.
I reverted to css and was able to get it to work using this:
#mydiv_id li {
margin-top: 10px;
}
The problem is that I can open the file from my hard drive in a browser and it’s fine, but when I upload to the server the effect isn’t there. I hope this is enough info. Any help would be appreciated.