PDA

View Full Version : Please Help


zach30345
Nov-06-2008, 12:12 PM
hi, im still trying to figure out how to hide the slideshow button only one gallery page ive looked everywhere. can someone also help me out with my domain i currently use zacharybarron.com through go daddy and i want to "mask" it i think but i tried and it didnt work. i want zacharybarron.com to stay up there no matter what page someone clicks on. thank you

jfriend
Nov-06-2008, 12:30 PM
hi, im still trying to figure out how to hide the slideshow button only one gallery page ive looked everywhere. can someone also help me out with my domain i currently use zacharybarron.com through go daddy and i want to "mask" it i think but i tried and it didnt work. i want zacharybarron.com to stay up there no matter what page someone clicks on. thank you
To hide a slideshow button in only once gallery, you would use this css:

.gallery_xxxxxx #slideshowButton {display:none;}

And you would put a gallery number in place of the xxxxxx. For example, if you wanted to hide the slideshow button in your Lighthouses gallery, which has this URL http://www.zacharybarron.smugmug.com/gallery/6433148_sMZ2k, you would do that with this CSS:

.gallery_6433148 #slideshowButton {display:none;}

To make it so that a viewer stays on your domain, you need to change the links in your navbar to be relative links that do not specify the domain and thus allow you to stay on the domain you were on.

Change your navbar HTML to this:

<div id="navcontainer">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/gallery/6420706_orjfD">About Me</a></li>
<li><a href="/gallery/6420906_P4Exc">Galleries</a></li>
<li><a href="http://app.formassembly.com/forms/view/49076">Contact</a></li>
<li><a href="/gallery/6473431_hebDx">Guarantee</a></li>
</ul>
</div>

zach30345
Nov-06-2008, 01:00 PM
i have been looking everywhere for that, thanks