Sure, dude. I've already seen your PM.
Just let me remember how I did it...
First, you have to grab the new (wider) images from my web and replace them in your templates directory. I use the blue translucency theme, so, the images and their location in my web (
http://www.pajareo.com) showed as [...] are:
.../public_html/templates/translucency/img/transblue/bg.gif ([...]/templates/translucency/img/transblue/bg.gif)
.../public_html/templates/translucency/img/transblue/entryfooterbottom.gif ([...]/templates/translucency/img/transblue/entryfooterbottom.gif)
.../public_html/templates/translucency/img/transblue/entryfootertop.gif ([...]/templates/translucency/img/transblue/entryfootertop.gif)
.../public_html/templates/translucency/img/transblue/footer.gif ([...]/templates/translucency/img/transblue/footer.gif)
.../public_html/templates/translucency/img/transblue/redtop.gif ([...]/templates/translucency/img/transblue/redtop.gif)
Then, you have to modify your .../public_html/templates/translucency/style.css and replace:
this
with this:
this:
with this:
this:
Code: Select all
#content {
float: left;
width: 375px;
}
with this:
Code: Select all
#content {
float: left;
width: 575px;
}
this:
Code: Select all
#serendipity_banner {
width:588px;
with this:
Code: Select all
#serendipity_banner {
width:788px;
this:
Code: Select all
#menu {
padding: 10px 5px 2px 20px;
text-align: left;
width:405px;
with this:
Code: Select all
#menu {
padding: 10px 5px 2px 20px;
text-align: left;
width:605px;
and, finally, this:
Code: Select all
div.serendipity_entryFooterMain {
color: #ffffff;
text-align: left;
line-height: 120%;
padding: 0px 5px 0px 5px;
font-size: xx-small;
width:365px;
}
with this:
Code: Select all
div.serendipity_entryFooterMain {
color: #ffffff;
text-align: left;
line-height: 120%;
padding: 0px 5px 0px 5px;
font-size: xx-small;
width:565px;
}
I hope you can make it with these modifications. Tell me if you find any problem, and make a backup of original files first!
And, if you want, just give me some 'modified-design-credit' in your footer div section on the bottom of the index.tpl file
Regards