Text on Backrounds

Penguin129

New Member
Messages
68
Reaction score
0
Points
0
The easy way would be to make the image the background instead of an image like you have it now. A harder way that keeps it as an image involves z-indexes to layer them.

To do the first method, one way would be to use css like so: (goes inside <head></head>)
Code:
<style type="text/css">
body {
background-image: url('http://rockraiderontheweb.pcriot.com/images/concept_art_02.jpg');
background-repeat: no-repeat;
background-position: 50% 0; 
}
</style>
 
Top