Placing Small Graphic in Header

Hello everyone,

I have a graphic that I want to put next to my h1 on my landing page, unlike the idea that I conjured here. Located in the div of ID “lpheader”, all I have is an h1 that already has a background image configuration on it, so should I just put this image in the HTML?

The page I want it attached to is located here.

HI,

You seemt to already have a span in place with a background image applied. Just position it where you need it.

e.g.


#homeinsurance {
    background: url(../insurance/homeinsurancerates.gif) repeat  0 0;
    height: 60px;
    position: absolute;
    right: -80px;
    width: 60px;
}

Just change the height, width and positioning to suit.

You didn’t really need the id on the span as you can hit it with h1 span etc.