Re: [WSG] Heading without line break

2005-01-25 Thread Philippe Wittenbergh
On 25 Jan 2005, at 6:55 pm, Kornel Lesinski wrote: How would I tell a stylesheet to not put a line break at the end of an Hx tag? e.g. h3My heading/h3 and some more text. I want the words and some more text. to appear on the same line. How would I do this? display: run-in; does exactly what you're

[WSG] Heading without line break

2005-01-24 Thread Ryan Sabir
Heya? How would I tell a stylesheet to not put a line break at the end of an Hx tag? e.g. h3My heading/h3 and some more text. I want the words and some more text. to appear on the same line. How would I do this? thanks, bye! --- Ryan Sabir Newgency Pty Ltd 2a Broughton

Re: [WSG] Heading without line break

2005-01-24 Thread Gary Menzel
Have you tried changing the DISPLAY style to INLINE instead of BLOCK ? Gary On Tue, 25 Jan 2005 12:31:15 +1100, Ryan Sabir [EMAIL PROTECTED] wrote: Heya? How would I tell a stylesheet to not put a line break at the end of an Hx tag? e.g. h3My heading/h3 and some more text. I want

Re: [WSG] Heading without line break

2005-01-24 Thread Jeff Lowder - Accessibility 1st
display: inline Cheers Jeff Lowder Accessibility 1st E-mail: [EMAIL PROTECTED] Website: http://www.accessibility1st.com.au On 25/1/05 12:31 PM, Ryan Sabir [EMAIL PROTECTED] wrote: Heya? How would I tell a stylesheet to not put a line break at the end of an Hx tag? e.g. h3My

Re: [WSG] Heading without line break

2005-01-24 Thread Patrick H. Lauke
Ryan Sabir wrote: How would I tell a stylesheet to not put a line break at the end of an Hx tag? Apply display: inline to both the heading and the following tag. Alternately, you could play with display: run-in applied just to the heading, but it may not be supported by all browsers.