Forum Moderators: open

Message Too Old, No Replies

eliminating breaks in header tags

         

jrd1mra

1:23 am on Jun 17, 2005 (gmt 0)

10+ Year Member



is there a way to eliminate breaks after a header?

I want to format a header like this:

texttext text "header" text text text

but I can only seem (using <h1>) to do this:
texttext

header

text text

how can I make it all on one line?

I hope you are not too confused, if clarification is needed let me know.

coopersita

1:31 am on Jun 17, 2005 (gmt 0)

10+ Year Member



You can set your heading as inline:

h1 { display: inline ;}

jrd1mra

1:32 am on Jun 17, 2005 (gmt 0)

10+ Year Member



I got it to look right in Dream Weaver by adding

'margin-top' 'margin-right' 'margin-bottom' 'margin-left' to the style sheet
but it still has breaks when I view it in the browser

jrd1mra

1:35 am on Jun 17, 2005 (gmt 0)

10+ Year Member



You can set your heading as inline:
h1 { display: inline ;}

THANK YOU! works great.