PDA

View Full Version : new to SM! bg image in gallery, footer links, subdomains?


mr peas
May-15-2008, 03:17 AM
okay i got everything else set up except the pages (within a new custom theme) where it holds the images for viewing. how does one replace the normal black bg with an image? i tried adding the code for replacing the bg from the customization page for the main page but it doesnt seem to work on the gallery pages.


also! how does one remove the smugmug logo from the top left corner of the galleries (if its possible or allowed) and remove certain links in the bottom of the photo/gallery pages (
News (http://www.smugmug.com/aboutus/news.mg) | Browse (http://www.smugmug.com/browse/) | Keywords (http://www.smugmug.com/keyword/) | Communities (http://www.smugmug.com/community/) | Forum (http://www.smugmug.com/help/dgrin) | Wiki (http://wiki.smugmug.com/display/SmugMug/Home) | Gear (http://www.zazzle.com/smugmug) | Prints & Gifts (http://www.smugmug.com/prints/catalog2.mg) | Shopping Cart (https://www.smugmug.com/cart) | Logout (http://www.smugmug.com/logout.mg?goTo=http%3A%2F%2Fwww.smugmug.com%2Fgall ery%2F4935316_fqPx9)
Terms (http://www.smugmug.com/aboutus/terms.mg) | Privacy (http://www.smugmug.com/aboutus/privacy.mg) | About Us (http://www.smugmug.com/aboutus/about.mg) | Contact SmugMug (http://www.smugmug.com/help/emailreal) | Blogs (http://blogs.smugmug.com/) | API (http://wiki.smugmug.com/display/SmugMug/API) | Affiliates (http://www.smugmug.com/affiliates/) | © 2008 SmugMug, Inc.) Id like to remove keywords, communites, and other non-useful links for clients to see.

lastly! can one bind a subdomain from a normal domain and have it bound to smugmug so that its as if SM runs on the same domain (e.g. gallery.third3ye.net)

thanks again, just became a new member of SM, i can finally wear the strap and not feel like a total goober! check it out! http://thirdeyephotography.smugmug.com



thanks again!!!!

Barb
May-15-2008, 02:49 PM
okay i got everything else set up except the pages (within a new custom theme) where it holds the images for viewing. how does one replace the normal black bg with an image? i tried adding the code for replacing the bg from the customization page for the main page but it doesnt seem to work on the gallery pages.


also! how does one remove the smugmug logo from the top left corner of the galleries (if its possible or allowed) and remove certain links in the bottom of the photo/gallery pages (
News (http://www.smugmug.com/aboutus/news.mg) | Browse (http://www.smugmug.com/browse/) | Keywords (http://www.smugmug.com/keyword/) | Communities (http://www.smugmug.com/community/) | Forum (http://www.smugmug.com/help/dgrin) | Wiki (http://wiki.smugmug.com/display/SmugMug/Home) | Gear (http://www.zazzle.com/smugmug) | Prints & Gifts (http://www.smugmug.com/prints/catalog2.mg) | Shopping Cart (https://www.smugmug.com/cart) | Logout (http://www.smugmug.com/logout.mg?goTo=http%3A%2F%2Fwww.smugmug.com%2Fgall ery%2F4935316_fqPx9)
Terms (http://www.smugmug.com/aboutus/terms.mg) | Privacy (http://www.smugmug.com/aboutus/privacy.mg) | About Us (http://www.smugmug.com/aboutus/about.mg) | Contact SmugMug (http://www.smugmug.com/help/emailreal) | Blogs (http://blogs.smugmug.com/) | API (http://wiki.smugmug.com/display/SmugMug/API) | Affiliates (http://www.smugmug.com/affiliates/) | © 2008 SmugMug, Inc.) Id like to remove keywords, communites, and other non-useful links for clients to see.

lastly! can one bind a subdomain from a normal domain and have it bound to smugmug so that its as if SM runs on the same domain (e.g. gallery.third3ye.net)

thanks again, just became a new member of SM, i can finally wear the strap and not feel like a total goober! check it out! http://thirdeyephotography.smugmug.com



thanks again!!!!

Hi,

If you want your background image to show on pages other than your homepage, then adjust your CSS that you have now from this:

/* Background Image */
body.homepage {
background-attachment: fixed;
background-image:
url(http://third3ye.net/smugmug/background.jpg);
background-repeat: no-repeat;
background-position: left bottom;
}

To this:

/* Background Image */
body {
background-attachment: fixed;
background-image:
url(http://third3ye.net/smugmug/background.jpg);
background-repeat: no-repeat;
background-position: left bottom;
}

Just remove the .homepage after body in the first line. The way you have it now states you just want that background image on the homepage.

Your custom theme will not show in any galleries where you have hide owner turned on.

http://dgrin.smugmug.com/gallery/2720246

Once you change those galleries to not be hidden, the default SmugMug header and footer will also disappear, and your custom theme will take over.

Holler if you have other questions :)

mr peas
May-15-2008, 08:05 PM
Whoa! Thats it! I'm done. :rofl

Thanks Barb, I'm coming to you when I get held up again.