This is for a blog and using a template. The background image is set to repeat-y. I have a class code for the title to have another image (horizontal) under. I want the two images to touch, like it flows together, but the text to be tabbed away from the vertical image. Like so:

I'm able to move the the text by way of padding, but this also moves my title image
CODE
#content {
float:left;
width:651px;
padding-left:49px;
background:url(images/tronco.png) repeat-y left;
}
.title {
color:#333;
padding-bottom:5px;
background:url("images/rama.png") no-repeat bottom left;
}
float:left;
width:651px;
padding-left:49px;
background:url(images/tronco.png) repeat-y left;
}
.title {
color:#333;
padding-bottom:5px;
background:url("images/rama.png") no-repeat bottom left;
}
This is what it currently looks like using the above.

But I want to have some room between the text and vertical bar. If I use padding-left, it moves the image with the text, also tried using backgrou-position:-value.
Any suggestions on how to tab the text without moving the image?


Answers