Hi,
1) You can try this. If you don't like you would need to make a 990px wide image to wit
.logo img {
position: absolute;
top: -5px;
}
2) Yes you could change the menu but such a customization is outside the scope of the support team , since it will need to be partially rewritten to accommodate your requirement.
3) When you write code, never use <div> naked because its difficult to isolate that div. Always use a class, just come up with any name.
<div class="my-middle-links">**** place block of code that you want to move in here **** </div>
The way you have it set up now, there are naked div's everywhere so its hard to grab the entire block.
4) You should not be doing buttons the way you are doing them. Place the code below into your custom.css file. then when you want a link to become a button, you just add a class to the link (see below).
/* ADD THIS TO CUSTOM.CSS */
.buttonz {
display: inline-block;
position: relative;
margin: 10px;
padding: 0 20px;
text-align: center;
text-decoration: none;
text-shadow: 1px 1px 1px rgba(255,255,255,.22);
font: bold 12px/25px Arial, sans-serif;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.29), inset 1px 1px 1px rgba(255,255,255,.44);
-moz-box-shadow: 1px 1px 1px rgba(0,0,0,.29), inset 1px 1px 1px rgba(255,255,255,.44);
box-shadow: 1px 1px 1px rgba(0,0,0,.29), inset 1px 1px 1px rgba(255,255,255,.44);
-webkit-transition: all 0.15s ease;
-moz-transition: all 0.15s ease;
-o-transition: all 0.15s ease;
-ms-transition: all 0.15s ease;
transition: all 0.15s ease;
}
.buttonz:hover {
-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.29), inset 0px 0px 2px rgba(0,0,0, .3);
-moz-box-shadow: 1px 1px 1px rgba(0,0,0,.29), inset 0px 0px 2px rgba(0,0,0, .3);
box-shadow: 1px 1px 1px rgba(0,0,0,.29), inset 0px 0px 2px rgba(0,0,0, .3);
}
.buttonz:active {
-webkit-box-shadow: inset 0px 0px 3px rgba(0,0,0, .8);
-moz-box-shadow: inset 0px 0px 3px rgba(0,0,0, .8);
box-shadow: inset 0px 0px 3px rgba(0,0,0, .8);
}
/* Big Button Style */
.bigz {
padding: 0 40px;
padding-top: 10px;
height: 45px;
text-transform: uppercase;
font: bold 20px/22px Arial, sans-serif;
}
.bigz span {
display: block;
text-transform: none;
font: italic normal 12px/18px Georgia, sans-serif;
text-shadow: 1px 1px 1px rgba(255,255,255, .12);
}
/* Green Color */
.greenz {
color: #3e5706;
background: #a5cd4e; /* Old browsers */
background: -moz-linear-gradient(top, #a5cd4e 0%, #6b8f1a 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a5cd4e), color-stop(100%,#6b8f1a)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #a5cd4e 0%,#6b8f1a 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #a5cd4e 0%,#6b8f1a 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #a5cd4e 0%,#6b8f1a 100%); /* IE10+ */
background: linear-gradient(top, #a5cd4e 0%,#6b8f1a 100%); /* W3C */
}
/* Blue Color */
.bluez {
color: #19667d;
background: #70c9e3; /* Old browsers */
background: -moz-linear-gradient(top, #70c9e3 0%, #39a0be 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#70c9e3), color-stop(100%,#39a0be)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #70c9e3 0%,#39a0be 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #70c9e3 0%,#39a0be 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #70c9e3 0%,#39a0be 100%); /* IE10+ */
background: linear-gradient(top, #70c9e3 0%,#39a0be 100%); /* W3C */
}
/* Gray Color */
.grayz {
color: #515151;
background: #d3d3d3; /* Old browsers */
background: -moz-linear-gradient(top, #d3d3d3 0%, #8a8a8a 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d3d3d3), color-stop(100%,#8a8a8a)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #d3d3d3 0%,#8a8a8a 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #d3d3d3 0%,#8a8a8a 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #d3d3d3 0%,#8a8a8a 100%); /* IE10+ */
background: linear-gradient(top, #d3d3d3 0%,#8a8a8a 100%); /* W3C */
}
Now you have 3 buttons, i called them buttonz because you already have buttons and I didn't want to mix the css code. The three colors are bluez, grayz, greenz.
So lets say you want to make a big blue button pointing to yahoo that's green. All you do, is add to your code
<a class="buttonz bigz greenz" href="http://www.yahoo.com">Yahoo</a>So for your example :
Instead of using for your Consultation button:
<a title="Consultations" href="http://fairfaxandpage.com/consultations/" rel="attachment wp-att-2734">
<img class="alignnone size-full wp-image-2734" title="consultations" src="http://fairfaxandpage.com/wp-content/uploads/2012/10/consultations.png" alt="consultations" width="202" height="52">
</a>
You would add just the link below to your content you will get a nice button that looks like an image without being one. (see what looks like -> http://i.imgur.com/shBcH.png )
<a class="buttonz bigz bluez" title="Consultations" href="http://fairfaxandpage.com/consultations/" >
Consultations
<span>
It's Free!
</span>
</a>
The little buttons are created when you dont add 'bigz' to the class. if you want to make different colors or sizes, please look how the colors are made above, and just add your own.
Thanks,
Nick