Hi Erin,

> I tried using display:inline in my css for my header, but that didn't do
> it for me. Any suggestions on how to get what I'm attempting???

Use inline-display both for the header and the following paragraph, like this:

Markup:

<p><img class="floatleft" src="images/frenchie.jpg" width="190"
height="147" alt="French Bulldog /></p>
<h2 class="inline">I am a hobby breeder of French Bulldogs in California.</h2>
<p class="inline">I acquired my first French Bulldog... </p>

CSS:

.inline
  {
    display: inline;
  }

You might want to adjust font size and font weight as well:

.inline
  {
    display: inline;
    font-size: 1em;
    font-weight: normal;
  }

That should work as intended.

Cheers,

jens

-- 
Jens Brueckmann
http://www.yalf.de
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to