In my style.css at the top I have the code: * { padding:0; margin:0; } Code (markup): which is causing my paragraphs NOT to be spaced, ie http://www.5thround.com/wordpress/2007/10/16/m-1-makes-big-moves/ Can anyone give me any tips about how to fix this?
well the star affects ALL elements. thats why add this selector p {margin: 10px 0;} this gives all paragraphs margin spacing
I'd suggest margin:1em 0; instead of 10px... or even just margin-bottom:1em; depending on the layout. (a layout I think I remember )
Haha yea, what's going on deathshadow, I'm trying to integrate it with wordpress, it's taking longer than I thought it would, but I'm starting to learn CSS decently well now.