PDA

View Full Version : navibar disapear on one gallery?


BeltzClan
Jun-21-2007, 06:01 AM
I need to make my navibar disapear on one gallery only. So that the only way in is a direct link. And with no navibar at the top to click through the rest of the site. Been here long enough to know that this should be possible. But how?

jamesbeltz.smugmug.com

Allen
Jun-21-2007, 06:07 AM
I need to make my navibar disapear on one gallery only. So that the only way in is a direct link. And with no navibar at the top to click through the rest of the site. Been here long enough to know that this should be possible. But how?

jamesbeltz.smugmug.com First add the closing div at the bottom here
in your header code.

<li><a href="http://jamesbeltz.smugmug.com/gallery/1432321">Contact Me</a></li>
</ul>
</div>
</div>

Add this to your CSS. Insert the gallery number for the xxxxxxx.
.gallery_xxxxxx #navcontainer {display: none;}

Andy
Jun-21-2007, 06:07 AM
I need to make my navibar disapear on one gallery only. So that the only way in is a direct link. And with no navibar at the top to click through the rest of the site. Been here long enough to know that this should be possible. But how?

jamesbeltz.smugmug.com
give your navbar a div

<div id="mynavbar">
navbarcodeishere
</div>

then in CSS, use

.gallery_XXXXXX #mynavbar {display: none;}