How Do I Position The H5 and Span Side By Side

In the linked example below, I am wanting to position the H1 and a span to sit side by side. The H1 is what I am trying to recreate with the H5 tag.

I am using image replacement and text-indent to style the H1 tag. This is the look I am going for.

The H5 has a nested span and I cannot figure out how to set them side by side. Can someone help me out?

LINK-
http://www.elliotteyecare.com/about-us/index2.php

Thanks in advance,

Todd

Hi,

I’d probably do something like this:


h5{overflow:hidden;position:relative}

h5 span{
position:absolute;
height:18px;
width:99em;
margin:.4em 0 0 2em;
}

I would use a class on the h5 though as you don’t want to set that globally.

Thanks for the fix Paul!