On a new page for your site you'd have to search inside the HTML and look for this:
Code:
<h1>Outdoor High Adventure</h1>
<h3>Your Backpacking Source</h3>
And replace it with want you want it to say.
Centering is another thing completely i'm guessing.
Look for this in the css.
Code:
.fw-head {
height: 177px;
margin: 0px;
padding: 0px 25px 0px 0px;
border: none;
overflow: hidden;
background: transparent url('http://www.outdoorhighadventure.com/bg-header.jpg') no-repeat top left;
}
and add
so it would become
Code:
.fw-head {
height: 177px;
margin: 0px;
padding: 0px 25px 0px 0px;
border: none;
overflow: hidden;
background: transparent url('http://www.outdoorhighadventure.com/bg-header.jpg') no-repeat top left;
text-align:center;}
I notice you're using a freewebs page, is this website hosted on your server?? or do you use their website builder??
|