Forum Moderators: not2easy
Thanks!
I think this is the effect you are after...
<style> h1{ display:inline } h4{ display:inline } </style>
<h1>heading1</h1><br> <h4>heading4</h4>
Or you can do it inline to the tags...
<h1 style="display:inline">heading1</h1><br> <h4 style="display:inline">heading4</h4>
HTH,
-George
h1, h4 { margin: 0; }
You really should be following your h1 w/ an h2, but I digress.