Jostein...
I’ll try to help with a few of your questions…
2…Change Picture…
The picture in the top left of the template is in the CSS template. It is a background image to a DIV called “picture”...You can also see the size the picture needs to be to fill the box…
#picture {
margin: 0;
padding: 0;
width: 230px;
height: 153px;
background: transparent url(./images/sample.jpg) no-repeat top left;
border-bottom: 1px solid #666;
color: #333;
}
2…Change Color…
In the CSS, you can change it to whatever you want.
#blogtitle {
position: relative;
margin: 0;
padding: 0;
clear: both;
background: #0D417A;
color: #fff;
width: 547px;
text-align: right;
}
2…Change Width…
The width is a little more complicated in that there are several different DIVs that have width assignments and all add up to the whole…I’m assuming you want to change the width of the overall page, not just the top banner…Again, this is all in the CSS template…Look for these DIVs…
#wrapper…width: 778px; Overall width of the entire page.
#sidebar…width: 230px; This is the whole left Sidebar including the picture at the top.
#main…width: 546px; Width of all the Main content area, the right side of the page, including the title, main menu, content, and the Reading/Listening/Viewing box.
#rightbar…width: 163px; Controls the width of the Reading/Listening/Viewing box.
That ought to get you started but you also need to pay attention to “margins” and “padding” statements within DIVs as they also come into play in the overall width formula.
3…Change Color…
This is similar to the color change for the Title area, just a different DIV…
#rightbar {
border: 1px solid #666;
float: right;
width: 163px;
background: #fff;
color: #333;
margin: 0px 0px 10px 10px;
}
As you can see, the whole look and feel of the Theme is controlled in the CSS template.
Hope this gets you started. 