[Zope] METAL macros
Felix Ulrich-Oltean
felix@chaptereight.com
Tue, 8 Oct 2002 14:07:20 +0100
On Mon, Oct 07, 2002 at 11:04:22PM -0400, jmabbate wrote:
> I'm trying to create a split heading on all my pages. In plain
> HTML, it would look something like this
>
> <h1>Site Name<br />
> <span class="tl">Tag line</span></h1>
>
> The purpose of doing this is that I want to control both the
> fonts and the spacing of the lines, via a CSS stylesheet (if I
> use a <h1><h2> or similar combination, the lines are too far
> apart).
Try the simplest thing first. You can tweak the distance between lines
using CSS, and the margin* attributes, e.g.:
h1 { margin-after: 0; }
F.