Now the touch...
You need to create your image and place it in:
/templates/news/images/mybg.jpg (lets assume this is the file name).
Now edit override.css and add at its end:
- Code: Select all
body {
background: #fff url('../images/mybg.jpg') no-repeat 0 50%;
}
What it does - it loads your image from prepared file and places it on top of the browser window (0 value right after no-repeat, you can modify it to eg. 10px to move image down 10px), centers it horizontally (50%) and adds white (#fff) background where the image ends. You should create your image so on both sides and bottom it ends with solid colour - and this colour should be used instead of #fff.