PDA

View Full Version : I could use some help, please!


Manticore
Jan-10-2007, 12:02 PM
I posted this in the New Tutorials thread, but I'm thinking it should be 'out here'?

I've followed the instructions on FAQ #90 - I want a Banner, a Navbar, a slideshow, no galleries on my homepage, and a separate galleries page, can do? - TUTORIAL (http://www.dgrin.com/showthread.php?t=47912)

But I can't seem to get it to work. Obviously I'm missing something. My banner is ok, and the nav bar is ok, but the slideshow isn't showing up.

My page is justastateofmind.smugmug.com

I'm not sure where to check for errors and I'm going cross-eyed!

Thanks.
http://www.dgrin.com/images/statusiconDefault/user_online.gif

richW
Jan-10-2007, 12:31 PM
Look at your js in your footer for the slideshow.
Repair this line:
if (YD.hasClass(document.body,'homepage') && !YD.hasClass (document.body,'galleries')) loadSlideshow();
Add the (

ivar
Jan-10-2007, 12:50 PM
:agree and you were missing some quotation marks in your footer code. Fixed.

Manticore
Jan-10-2007, 12:59 PM
Son of a gun, I knew it was in the footer section but I just wasn't seeing that. I did pick up the quotation thing but not the parens. Kind of makes me embarrased to admit all the c and c++ coding I did - you'd think I would have caught the parens thing!

Thanks so much for your help! If I could ask one more question, how do I get rid of the text 'JustAStateOfMind's Home'?

Thanks again - you guys rock!


:agree and you were missing some quotation marks in your footer code. Fixed.

richW
Jan-10-2007, 03:23 PM
how do I get rid of the text 'JustAStateOfMind's Home'? FAQ #23 over here: http://www.smugmug.com/help/customize-faq.mg

/* hides your name (including any 's) */
#userName {
display: none;
}

/* hides the word home */
#userHome {
display: none;
}

Manticore
Jan-10-2007, 03:55 PM
FAQ #23 over here: http://www.smugmug.com/help/customize-faq.mg

/* hides your name (including any 's) */
#userName {
display: none;
}

/* hides the word home */
#userHome {
display: none;
}

Duh! Thanks Rich!