Hi Trevor, it automatically inerted this into my page
<style>
h2 { margin-bottom: -1 }
</style>
</head>
<body>
and it works for all my h2's.
Btw, I will be publishing my new css pages any day now, I think you will
be
pleased, lots of direction links, and your site map
Susie
:
Thor wrote:
Sure. Here's how to do it from the Design view. Then, go look at the
Code view and see how it was accomplished. There'll be a <style>
statement in the <head> area. You can just put that into any page
where you want to make this modification. If you're going to need it
often, look up how to create a code snippet and you can insert the
style statement with one click.
Click Format/Style
Select h1
Click [Modify] / [Format] / Paragraph
Go to Spacing After and insert a negative number. Try -10. Play
around until you get what you want.
When you go back to do the same thing for h2, you may not see
anything but h1 in the selection box. Click below the box, and bring
up HTML Tags to see h2 again.
I have looked everywhere, but apparently have missed where I can
adjust the distance between the H1, H2 titles and my text. Right
now its just too much.
Is there a way to get the text and the H1, H2 titles closer
together?
Thanks,
Susie
I am not the OP, but some comments.
I tried this and it generated (for an h4)
<h4 style="margin-bottom:0;">My heading</h4>
This worked fine,so I thought I'll be clever and set a general style
for
all <h4> tags
So I deleted the style and added this before <body>
<style type="text.css">
h4 {margin-bottom:0;}
</style>
</head>
<body>
It did NOT work.
Now I am mysftied.
I thought I knew CSS a little better than this. After all, adding
style="" to an element is the same as adding the same style to it
in the <style> tag, isn't it ??