For the header section . . .
Within the path templates/ja_seleni/css/colors/blue.css
open blue.css and at line 51 . . .
#ja-header {
background-color: #0D273E;
}
try modifying as follows:
#ja-header {
background-image:url(yourimage.jpg)
}
with “yourimage” being an image you create at the specified height and width – 960px I believe.
it may take a bit of trial-and-error
For the footer section . . .
Within the path templates/ja_seleni/css/template.css
at line 1434 . . .
/* FOOTER
--------------------------------------------------------- */
#ja-footer {
background: #0d273e;
height:75px;
position:absolute;
bottom:-50px;
}
try modifying as follows:
#ja-footer {
background-image:url(yourimage.jpg);
height:75px;
position:absolute;
bottom:-50px;
}
with “yourimage” being an image you create at the specified height and width – 960px I believe.
it may take a bit of trial-and-error
Let me know how that works