I know this is easy, but I can't seem to find any descent google results for this.....
Right now I have some styles set up for my paragraphs. Everything is spaced appropriately, however the first paragraph always has the standard top margin attached. I don't want it for the first paragraph tho, especially since I use images a lot, and use the align="left" to let the text flow along side of it. That darn white space makes it look goofy.
Do I need to make a separate class for 'p' in the css, and go change everything I've written, or is there an easier way?
Member
From: Bega, Sapphire Coast Australia
Registered: 2005-08-18
Posts: 1560
I've been thanked 43 times.
Offline
G'day Stitch.
Make margin top 0px; and margin bottom 8px;
I find this handy for my h1 to h4 also as I can set up the spacing acording to the larger heading, rather than what's below it.
In which ever case, the image then sits level with the first line of text or with an h3 or h4.
Code:
h1
{font-family: verdana, helvetica, arial, sans-serif; font-size:13pt; margin-bottom:4px; margin-top:0px; text-align: center;}
h2
{font-family: verdana, helvetica, arial, sans-serif; font-size:11pt; margin-bottom:4px; margin-top:0px;}
h3
{font-family: verdana, helvetica, arial, sans-serif; font-size:10pt; margin-bottom:4px; margin-top:0px;}
Code:
div.picleft
{
position:relative;
float: left;
width: 250px;
\width: 250px;
w\idth: 250px;
padding: 0px;
margin-top: 8px;
margin-right: 5px;
margin-bottom: 8px;
margin-left: 0px;
font-family: verdana, sans-serif;
font-size: 7pt;
text-align: center;
}
div.picright
{
position:relative;
float: right;
width: 250px;
\width: 250px;
w\idth: 250px;
padding: 0px;
margin-top: 8px;
margin-right: 0px;
margin-bottom: 8px;
margin-left: 5px;
font-family: verdana, sans-serif;
font-size: 7pt;
text-align: center;
}
Code:
<div class="picright"><img src="aragunnu_camping_01.jpg" alt="Catching beachworms" /><br />A girl and her dad catching beachworms; bait for beach fishing. Good salmon and whiting were biting at Aragunnu beach.</div>
Regards,
Laurie.
Australian Exploration and Adventure on Horseback and Motorbike

| Never |


