
Originally Posted by
arthena
Hi, Sorry I am trying to make the header smaller so the space between the logo and start of main page is smaller (closer together)
How familiar are you with CSS? If you know the basics, this shouldn't be a problem.
First of all, I'd like to suggest something similar to Trinity's suggestion - use Firefox and install Firebug. Although most of the stuff can be used with the built-in Inspect Element, I'm sure you'll eventually realize that Firebug has better capabilities... 
Anyway, to answer your question... You'll need to edit the following file:
includes/templates/westminster_new/css/stylesheet.css
Find line 62:
and replace with:
Code:
#logoWrapper {
display: block;
float: right;
}
Next, find line 314:
Code:
#menu {
float: left;
margin-top: 20px;
width: 100%;
}
and replace with:
Code:
#menu {
float: left;
margin-top: 20px;
}
This should do the trick and move the menu to the left of the logo.
Optionally, you can play even more and find line 78:
Code:
#top-middle {
background: none repeat scroll 0 0 #FFFFFF;
border-bottom: 2px solid #DBDBCE;
padding-bottom: 20px;
width: 100%;
}
and just remove the padding.
Hope it helps...