Designer wrote:
> [...] #description p:first-line { margin-left : 3em; }
> and it refuses to take any notice of me!
I assume you mean a class #description p.first-line, yes? Try text-indent
maybe with no class at all.
#description p {
text-indent : 3em;
}
Unless it's just for the first paragraph then you will need the p
class="first-line"
#description p.first-line {
text-indent : 3em;
}
Hope this helps.
Respectfully,
Mike Cherim
http://green-beast.com/
*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************
*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************