PDA

View Full Version : Block banner and navigation bar on home page


yukoner
Apr-19-2009, 10:25 PM
I'd like to create a simple HTML splash page using the graphic I currently have as a banner and then use a different banner on the rest of the site.

I'd also like to not have the navigation bar that shows below the current banner show on the home page as I will add it to the HTML for the splash page.

Home page is at http://www.yukonphotographers.com

How do I have the banner and nav bar not show on the home page.

Thanks.

jfriend
Apr-19-2009, 10:35 PM
Add this to hide your banner and navbar on your homepage only, but leave it showing on your galleries page (which is also a copy of your homepage):

/* hide banner and navbar on homepage */
.homepage #my_banner, .homepage #navcontainer {display:none;}

/* show banner and navbar on galleries page which is also a homepage so it would have been hidden */
.galleries #my_banner, .galleries #navcontainer {display:block;}

yukoner
Apr-20-2009, 07:04 AM
Add this to hide your banner and navbar on your homepage only, but leave it showing on your galleries page (which is also a copy of your homepage):

/* hide banner and navbar on homepage */
.homepage #my_banner, .homepage #navcontainer {display:none;}

/* show banner and navbar on galleries page which is also a homepage so it would have been hidden */
.galleries #my_banner, .galleries #navcontainer {display:block;}

Thanks again John.