You can change those things by accessing the style.css file. For example, around line 38 there is this:
Code:
#header {
background: #73A0C5 url('images/kubrickheader.jpg') no-repeat top center;
height: 145px;
}
... which sets the logos via a single background image. You could change the image the style sheet points to.
Around line 101 there is this:
Code:
h1 {
font-size: 3em;
color: #006;
text-align: center;
padding-left: 50px;
}
You can change the padding to move the heading to the left. For example, change 50px to 20px to move the heading to the left.
Bookmarks