PDA

View Full Version : Guest Book Help Here


CreativeStacey
Jun-27-2008, 12:49 PM
Okay so I searched the threads and didn't find my answer before posting. So if it is somewhere else and search didn't find it, I apologize for re-posting but I need some help with the guestbook, please!

I successfully added the new gallery that says "Guestbook" and made it in journal style. However here are things I'd like to do and copy/pasting the text from the Customization help didn't seem to work.

1. Change "Gallery Comments" to "Guestbook Comments". I copy and pasted and changed what it said, nothing happened.

2. For this section: "If you wish, add this to your CSS box to remove page navigation, changing the teal:" .gallery_XXXXXX .pageNav {
display: none;
}

(What do I change the teal to? What does this mean?)

3. Tip: Make your guestbook gallery public and featured on your homepage, or link to it in your bio or navbar. ----> How do I do this too? I would like to link it to my bio.

That's it for now! Starting off simple, I appreciate any and all help. My website is:
www.morethanamemoryphotography.com (http://www.morethanamemoryphotography.com)

Thanks!

Allen
Jun-27-2008, 04:36 PM
Okay so I searched the threads and didn't find my answer before posting. So if it is somewhere else and search didn't find it, I apologize for re-posting but I need some help with the guestbook, please!

I successfully added the new gallery that says "Guestbook" and made it in journal style. However here are things I'd like to do and copy/pasting the text from the Customization help didn't seem to work.

1. Change "Gallery Comments" to "Guestbook Comments". I copy and pasted and changed what it said, nothing happened.

2. For this section: "If you wish, add this to your CSS box to remove page navigation, changing the teal:" .gallery_XXXXXX .pageNav {
display: none;
}

(What do I change the teal to? What does this mean?)

3. Tip: Make your guestbook gallery public and featured on your homepage, or link to it in your bio or navbar. ----> How do I do this too? I would like to link it to my bio.

That's it for now! Starting off simple, I appreciate any and all help. My website is:
www.morethanamemoryphotography.com (http://www.morethanamemoryphotography.com)

Thanks!
I don't see nay CSS on your site. Do you have a power or pro site?

To change the comments at the bottom of the guestbook gallery
to "guestbook comments" add this to your javascript. Replace
the XXXXXXX with your gallery number.

function ModifyText ()
{
if (YD.hasClass(document.body, "gallery_5264732"))
{
var objElement = YD.get("comment")
if (objElement != null)
{
var str = new String(objElement.innerHTML);
str = str.replace(/\gallery/gi, 'guestbook');
objElement.innerHTML = str;
}
}
}

YE.onAvailable("comment", ModifyText);

Add this to your CSS to remove the page nav.
.gallery_5264732 #albumNav_top,
.gallery_5264732 #albumNav_bottom {display: none;}
This would be the link in your navbar if you had one.
<li><a href="http://www.morethanamemoryphotography.com/gallery/5264732_A66Sd">My Guestbook</a></li>

CreativeStacey
Jun-27-2008, 04:46 PM
I don't have any CSS or anything on my site yet, I have a Power account, the guest book was the first thing I was going to do. I will use your suggestions and see what I come up with, thanks for the help!!! :clap