Forum Moderators: open
So it looks something like:
<h1> widgetwidget <br>
widgetwidget <br>widgetwidget</h1>
[edited by: ciml at 10:35 pm (utc) on April 1, 2004]
[edited by: Marcia at 12:38 pm (utc) on April 3, 2004]
[edit reason] Shortened more for sideways scrolling. [/edit]
Let me try again...
CSS isn't the scary thing it might seem, especially if you don't try to use all its facilities at one go.
I frequently mix tables (for large scale positioning) with CSS for character and word-based formatting. Although this means my sites end up having one foot in each of the two camps - HTML formatting and CSS formatting - the payoff is still tangible - a massive reduction in "bloat", a common file containing my house style for the whole site, and a much easier time of making adjustments to my site.
Sorry again for not taking the time to say that the first time I replied.
DerekH
Long term, you should change your approach to use the CSS in an external file, which shrinks the HTML file a lot, and also makes it easier to work with.
The example then becomes:
CSS:
h1 {padding-left: 50px;};
HTML:
<h1>widgetwidget</h1>