HTML Spacing in CMS

3 posts by 3 authors in: Forums > CMS Builder
Last Post: August 11, 2009   (RSS)

By (Deleted User) - August 10, 2009

Where can I change that all pages use this
<p style="margin-top: 0; margin-bottom: 0"></p> as a default setting

Instead of it just being
<p></p>

Re: [northernpenguin] HTML Spacing in CMS

By Chris - August 11, 2009

Hi hegadmin,

You can use CSS to change global styles like that. Add a stylesheet to all of your pages with the following CSS:

P {
margin-top: 0;
margin-bottom: 0;
}


Does that answer your question?
All the best,
Chris