> > I would like to be able to use a Header and a paragraph on the same
> > line in
> > Where there is an H5 such as:
> > <h5>Jeff Altemus - Director</h5>
> > I would like to add  a paragraph such as  <p>First and Second
> Week</p>
> > The result would be  <h5>Jeff Altemus - Director</h5> <p>First and 
> > Second Weeek</h5> with no line break and maintaining the styling for
> the H
> tag.

You could try something like applying a class to the <p> (I have used
'floatByH5' in this example) and making both the h5 and <p> display
inline. This would give you the benefit of only needing to add an extra
class to the <p> and keeping the structure semantically as intended, I
believe. (You may want to play about with margins to get it display
nicely). 

HTML

<h5>Jeff Altemus - Director</h5>
<p class="floatByH5">First and Second Weeek</p>

CSS

h5, p.floatByH5{display:inline;}
h5 {float:left;}

HTH
James
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to