Archive for September, 2005

Changing slideshow options

Monday, September 19th, 2005

Here is how to change the duration for the slideshow. In the body tag put this:

<body onload="updateSS();"> </body>
In the javascript section, put this:

function updateSS() {
// look at the body tags classes, if it is the homepage then swap
bodyClass = document.getElementsByTagName("body")[0].className;
if [...]

Changing shopping cart action text

Tuesday, September 6th, 2005

We came up with our “this photo” and “multiple photos” after much thought – but we understand that everyone has their own idea of perfection. Here is how you could change what the cart action text says for the top nav (feel free to swap out albumNav_top with albumNav_bottom):

onload = redoCart;
function redoCart() {
[...]

Squaring up Bio and Journal Text

Friday, September 2nd, 2005

Some of you don’t prefer the new wrapping of the text around the bio image; here is some code to get it to be squared up again:

#userBio {
width: 550px;
display: inline;
float: left;
position: relative;
}
.journal_entry .caption {
[...]

Hidden captions and navigation

Friday, September 2nd, 2005

So every gallery style on the site now has a caption above and below the photo; here is how to turn off the caption below and turn on the caption above:

#caption_top {
display: block;
}
#caption_bottom {
display: none;
}

Also, smugmug and smugmug small have navigation hidden at the bottom [...]

Using HTML in your bio, caption or description

Friday, September 2nd, 2005

So for a while now we have let you use HTML in some areas and not others, and even where you could put HTML up – we tweaked it for you because not everyone knows HTML. We would auto convert linebreaks to tags and auto-link any website or email address we found – making [...]

Swapping homepage boxes

Thursday, September 1st, 2005

So let’s say you want friends and family down at the bottom of the page and you galleries up higher. This code will do it for you:

// look to swap after the page is loaded
onload = swapFF;
// the swap function
function swapFF() {
// look at the body tags classes, if it [...]