Hi guys, I'm new to CSS and only really know the absolute basics. Can someone walk me through how to reduce the extra line that appears when a new paragraph is started or when a new header tag is used? If you head to http://www.workingholidayinfo.com/index.htm you'll see what I mean. I want to reduce the amount of vertical space between the titles in red and the paragraphs below. Advice would be good but if someone can tell me exactly what to type into my css file and the html file that'd be even better as I'm thick when it come sto CSS! Thanks, Kirsty
you're almost there! in your stylesheet, change this: p {} Code (markup): to this: p {margin-top: 0px;} Code (markup): and then change this: h2 { font-size: 12pt; color: #993333; font-family: Verdana, Arial; } Code (markup): to this: h2 { font-size: 12pt; color: #993333; font-family: Verdana, Arial; margin-bottom: 0px;} Code (markup):