Looking for a solution:
#header h1 {
float:left;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
font-size: 2.5em;
margin-top: 8px;
margin-left: 0.8em;
padding-left: 40px;
background: url("h1bkgrnd.png") no-repeat left center;
height: 100px;
}
Here's the corresponding html:
<div id="header">
<h1><br><br> Our Services</h1>
</div>
While this setup works fine with added non-breaking spaces to align text properly, is there a more efficient way to achieve this alignment without using excessive code?
Your input is appreciated!