With my wanting to "open up" the space between the page title and the navigation bar of the Skyline theme, I was running into problems...Then along came Dantcer with a similar situation (
"Nav Bar Issue with IE"). Tho her resolve was different than my objective, the process she ended up using satisfied me, giving me the illusion I wanted. Hadn't really thought about it much except that many questions regarding "How to make a banner?" have been asked recently...soooo, here goes.
Please take into consideration that this application is for the
"Skyline" theme. The rendition of this effect regarding the
"Black Lily" theme can be found here. Renditions of the
Vertical Owner Navigation Bar applicable to the
"Live Love and Laugh" and
"Shadow Box" themes can be found
within the comments of this. Those are the only other posted applications of the
Vertical Owner Navigation Bar that I am aware of...
This is the CSS pertaining to the positioning and display of the "owner navigation bar" from the Skyline base theme:
div.owner_nav {
border: none;
margin: 0;
height: 163px;
}
div#subnavc {
width: auto;
}
div#subnav {
padding: 1px;
padding-left: 5px;
background: none;
background-color: #000;
border: none;
border-top: 1px solid #99f;
border-bottom: 1px solid #99f;
height: auto;
}
To give you an idea of the dimensional difference, this is the top portion of the Skyline theme with that CSS...
Working with the height and padding of the div.owner_nav portion, and adjusting the padding-top of div#subnav to coordinate those efforts...
/*Navigation bar*/
div.owner_nav {
border: none;
margin: auto;
/*height +/- moves theme body (ie; Welcome box and headshot) relative to top of page*/
height: 260px;
width: auto;
padding: 0px;
/*pad-top moves title AND nav bar relative (+/-) to gnav*/
padding-top: 25px;
/*pad-bottom moves nav bar relative (+/-) to title*/
padding-bottom: 285px;
background: none;
}
div#subnavc {
width: auto;
}
/*owner nav bar - BG & border*/
div#subnav {
padding: 1px;
/*pad-left moves nav bar relative (+/-) to side of page*/
padding-left: 30px;
/*pad-top moves nav bar relative (+/-) to title*/
padding-top: 310px;
background: none;
border: none;
height: auto;
width: auto;
}
"Pushing" the page title a little, if you want it aligned to the left as I do...aligning it with the "Home" tab, placing it more within the body of your page as you scroll down, is accomplished here:
h1#page_owner_title {
/*pad-left moves title relative (+/-) to side of page*/
padding-left: 25px;
}
JFYI: If you want your page title "centered", simply add the following to the h1#page_owner_title { area...
text align: center;
This is what I came up with...

JFYI: The image I am using is 750x562px, the height (562px or close proximity) being important...to give you an idea of what size image you must use to "cover" your screen and to get this effect./* GTO - image from
http://www.gtoforum.com/photopost/showphoto.php/photo/454/limit/views */
body {
background-color: #000000;
background-image:url(
IMAGE URL - image used - 750x562px);
background-attachment: scroll;
background-position: top center;
background-repeat: no-repeat;
width: auto;
}
You also realize that you have options at this point (let your imagination be your guide)...ie:
background-attachment: fixed;and/or with
background-position: top;or
background-position: top left;or
background-position: top right;Another feature that can be used with this rendition is the vertical navigation bar. Thanks go to Denim, my friend, who passed this concept (CSS elements) on to me...of which I modified to fit the illusion I wanted:
(Please note the added elements within each area compared to the original base theme CSS...They are provided to show the latitude you have)
/*VERTICAL Navigation bar for Skyline*/
div.owner_nav {
border: none;
margin: auto;
/*height moves theme body (ie; Welcome box and headshot) relative (+/-) to top of page*/height: 260px;
width: auto;
padding: 0px;
/*pad-top moves title AND nav bar relative (+/-) to gnav*/padding-top: 25px;
/*pad-bottom moves nav bar relative (+/-) to title*/padding-bottom: 285px;
background: none;
}
/*Vertical Nav bar CSS elements from Denim - modified*/
div#subnavc {
background: none;
width: 110px;
border: none;
padding: 0px;
/*pad-top moves nav bar +/- from title*/padding-top: 60px;
/*pad-left + moves nav bar to right*/padding-left: 35px;
margin: 0px;
position: absolute;
}
div#subnav {
padding: 0px;
padding-left: 8px;
margin: 0px;
background: none;
border: none;
height: 25px;
}
/*nav buttons - not "In Use" or hover*/
a.topt, a:visited.topt {
line-height: 2.4em;
display: block;
float: left;
width: 110px;
/*spacing between VERTICAL tabs*/height: 40px;
text-align: left;
font-family: comic sans-serif;
font-weight: bold;
font-size: 18px;
font-style: oblique;
color: #ECE5B6;
padding: 0px;
margin: 0px;
background: none;
background: url(
URL);
background-repeat: no-repeat;
background-position: center;
border: none;
}
/*hover on all - not "In Use"*/
a.topt:hover, a:visited.topt:hover {
line-height: 2.4em;
display: block;
float: left;
text-align: left;
font-family: Arial;
font-weight: bold;
font-size: 18px;
color: #fff;
padding: 0px;
margin: 0px;
background: none;
background: url(
URL);
background-repeat: no-repeat;
background-position: center;
border: none;
}
/*"In Use" tab - not hover*/
a.toptsel, a:visited.toptsel {
line-height: 2.4em;
display: block;
float: left;
width: 110px;
/*space below VERTICAL "In Use" tab*/height: 40px;
text-align: left;
font-family: comic sans-serif;
font-style: oblique;
font-weight: bold;
font-size: 18px;
color: #ECE5B6;
padding: 0px;
margin: 0px;
background: none;
background: url(
URL);
background-repeat: no-repeat;
background-position: center;
border: none;
/*to add blinking (FF) "In Use" tab - only works with FF*/
text-decoration: blink;
}
/*"In Use" tab - hover*/
a.toptsel:hover, a:visited.toptsel:hover {
line-height: 2.4em;
display: block;
float: left;
text-align: left;
font-family: Arial;
font-weight: bold;
font-size: 20px;
color: #fff;
padding: 0px;
margin: 0px;
background: none;
background: url(
URL);
background-repeat: no-repeat;
background-position: center;
border: none;
}
/*end of modified VERTICAL nav bar CSS*/
This is what I came up with...

AND...These adjustments to the CSS of Skyline have been worked/modified/resolved to satisfy viewing with both IE7 and FF!
If you are curious about the Global Navigation Bar, please refer to Demit's post,
One-liner Global Navigation, or my post
Global Navigation Bar..."tweaksville...lol for my interpretation and application.
A final note regarding these codes and the CSS Validator:
Tho the /* notes */ within the brackets (ie; { } ) are strategically placed for your reference and guidance in the event you want/need to tweak them for your personal preference...As of the "upgrade", mid June 2008, you MUST remove/delete all /* notes */ within the brackets (of which I colored for easy reference) prior to posting this code in your Custom CSS area, so the height and width don't get "stripped" by the validator, hence corrupting your theme!