PDA

View Full Version : customization tweaking


chrismoore
Sep-04-2008, 03:40 AM
Hi, I would really appreciate a little guidance as I tweak my site. the address is chrismooreimages.smugmug.com

1) Somehow my guestbook ( in the 'about me' section) has stopped functioning. I didnt (knowingly) change the code, but the word "guestbook" no longer appears, and when clicking on the comments tab, the are only blank boxes

2) both my blog and contact page are html only and I want to remove "...new gallery with no photos." i have read the other posts on this including FAQ, but .gallery_5878492 .nophotos h3{ display: none; } is not working for me.

3) I would like to bring back the "Available RSS" in the footer, do you know how to do that?

thank you so much for your help.
Chris

Allen
Sep-04-2008, 09:43 AM
Hi, I would really appreciate a little guidance as I tweak my site. the address is chrismooreimages.smugmug.com

1) Somehow my guestbook ( in the 'about me' section) has stopped functioning. I didnt (knowingly) change the code, but the word "guestbook" no longer appears, and when clicking on the comments tab, the are only blank boxes

2) both my blog and contact page are html only and I want to remove "...new gallery with no photos." i have read the other posts on this including FAQ, but .gallery_5878492 .nophotos h3{ display: none; } is not working for me.

3) I would like to bring back the "Available RSS" in the footer, do you know how to do that?

thank you so much for your help.
Chris
This is removing all titles like "Guestbook Comments"

.title {display: none !important;}


Add the missing }

#mysearch {
position: relative;
top: -130px;
right: 120px;
float: right;
}

You are missing the closing form tag in your footer.

<form style="border: 1px solid rgb(204, 204, 204); padding: 3px; text-align: center; font-size: 150%;" action="http://www.feedburn
....
put value="Subscribe" type="submit">
</form>

Looks like when you created your own footer you left out the feeds part.

...
<span class="cartlink_footer"><a href="https://secure.smugmug.com/cart" class="nav">Shopping Cart</a> | </span>
<span class="text">Portions © 2008 SmugMug, Inc.</span>
</div>
<div id="feeds" class="nav">
<div id="feedHelp" class="nav">
...

chrismoore
Sep-04-2008, 07:28 PM
Thanks, got most of it working, except displaying RSS in the footer. I inserted the code you gave in footer, deleted #feeds {display:none;} in CSS, but the "Available RSS" plus radio icon still is not displaying in the footer. Do you know what I'm doing wrong? Thank you again.