I need help with my site banner

mcduggly

New Member
I have recently gotten advice from someone that I need to make my banner text-based instead of an image. How do I do this? I am not a very good programmer or designer, so I might need a lot of help. Any help is greatly appreciated.
 

smoovo

New Member
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. :)
 
Top