Hello!
To change the
background stripes you need to change
2 images in your
template/images folder:
| Code: |
bg.png and bgbase.png
|
Both of these images are in the
template source file provided in your download, I would recommend editing this file with
Adobe Fireworks (
you can download a trial version from there site), which will allow you to change the above image slices.
To add some text to the
right side of the logo; first insert the div below just above the
<div id="header_right"> in your template
index.php:
| Code: |
<div id="some_text"><p>here is some text</p></div>
|
and then add this into your
template CSS file (
at the bottom of the file):
| Code: |
#some_text {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 12px;
float: left;
width: 200px;
padding: 0px 10px;
}
|
then you just need to change the
width values of the
header_left and
header_right div's as below:
| Code: |
#header_left {
float: left;
width: 200px; /*changed from 400*/
}
#header_right {
float: right;
width: 250px; /*changed from 350*/
}
|
and lastly, to move all of this lower down:
| Code: |
#header {
color:#FFFFFF;
width: 850px;
height: 84px;
margin-top: 20px; /*change this to move the logo etc lower*/
}
|
And that should sort all that out! If this is not working for you, let me know and mail me your
URL and a site
super admin account and I will have a look for you
