It depends on what browsers support you want?
You could use :before and :after to place the start and finish images as mentioned above (but support is only ie8+) and then repeat the middle graphic on the h1.
On another matter you are showing a gap under the heading due to margins pushing the elements away so add this to fix it.
Code:
#sectionbody {
padding: 1px 0;
}
Referring to a previous question you asked you can hide the top border that runs through the h1 by adding the same background image to it that you are using underneath and then match them up.
e.g.
Code:
h1{background:url(http://atlantareviewgroup.com/style/sectionbody.gif) no-repeat -103px 0;
float:left;
padding:0 10px;
margin:10px 0 0 100px;
}
Bookmarks