PDA

View Full Version : Guest Book Question


Erv
Apr-14-2008, 06:59 PM
On my Guest book page, I have a BAR with two lines and the words "gallery pages:1" on top and bottom of my photo in the guest book. How do I remove these bars and the words?

Thanks for any help!

http://doctemp.smugmug.com

Allen
Apr-14-2008, 07:09 PM
On my Guest book page, I have a BAR with two lines and the words "gallery pages:1" on top and bottom of my photo in the guest book. How do I remove these bars and the words?

Thanks for any help!

http://doctemp.smugmug.com
You have this is yoru CSS removing the background of extraDiv1 but it's still there
and your navbar is not clickable using Firefox.

#bioBox,
#category,
#extraDiv1,
#extraDiv2,
#journal,
#traditional,
#allthumbs,
#slideshow,
#filmstrip,
#critique {
background: none !important;
}

Need to turn it off instead.

#extraDiv1 {
display: none;
}

Add these for your guestbook.

.gallery_4723154 #albumNav_top,
.gallery_4723154 #albumNav_bottom {display: none;}

Erv
Apr-14-2008, 07:21 PM
You have this is yoru CSS removing the background of extraDiv1 but it's still there
and your navbar is not clickable using Firefox.

#bioBox,
#category,
#extraDiv1,
#extraDiv2,
#journal,
#traditional,
#allthumbs,
#slideshow,
#filmstrip,
#critique {
background: none !important;
}

Need to turn it off instead.

#extraDiv1 {
display: none;
}

Add these for your guestbook.

.gallery_4723154 #albumNav_top,
.gallery_4723154 #albumNav_bottom {display: none;}

Made all the chaanges, you are special! Thank you so much!!!