This has probably been answered a million times and I do know the answer but for some reason, it doesn't work for my page so I'm thinking it might have something to do with how Atahualpa is configured.
Basically, within a particular div that I set up, I want to remove the top margin of paragraphs. I know I'm supposed to do this...
Code:
.mydiv p { margin-top: 0px; }
It does work when I individually style each p like this...
Code:
<p style="margin-top: 0px;"></p>
Any suggestions?