Do this:
1. Make div with your old banner measures.
2. Add background image to it (to make it nice).
3. Make this div "position:relative;".
4. Put inside this div the name, phone and other stuff you want on your banner.
5. Place each part by adding div around it, and
6. Each div will be "position:absolute;" with "top" and "left" set for place.
Here is example without extras,
HTML:
<div style="width:900px; height:150px; position:relative;">
<div style="width:300px; height:50px; position:absolute; top:10px; left:10px;">My Company</div>
</div>
This way you will get banner text based. You can change fonts family, colors, size and positions.
-
Enjoy.
