PDA

View Full Version : Kluck's thread


Kluck
Sep-07-2007, 08:10 PM
Can someone please explain what I need to do to change my entire homepage. I want to have my current header, then tool bars, and a slideshow. I have tried to input the code, but I am a photographer not a web designer.

Thanks for the help!

Allen
Sep-07-2007, 08:17 PM
Can someone please explain what I need to do to change my entire homepage. I want to have my current header, then tool bars, and a slideshow. I have tried to input the code, but I am a photographer not a web designer.

Thanks for the help!
Go ahead and put the code in, much easier to troubleshoot then. Also post a
link to your site so we can help.

Have you seen this tutor (http://dgrin.smugmug.com/gallery/2160039)? It has step by step cut and paste instructions.
Post back any questions you have and also where you are stuck.

Kluck
Sep-07-2007, 11:25 PM
My site is www.kellyhenry.smugmug.com (http://www.kellyhenry.smugmug.com)

I that is the step by step that I was using but I dont know what info in the script that needs to be changed.

Thanks for your help!

I will put the script in for the slideshow tonight and will work on the navbar tomorrow.

Allen
Sep-09-2007, 10:32 AM
My site is www.kellyhenry.smugmug.com (http://www.kellyhenry.smugmug.com)

I that is the step by step that I was using but I dont know what info in the script that needs to be changed.

Thanks for your help!

I will put the script in for the slideshow tonight and will work on the navbar tomorrow.
Remove this out of both your footer and javascript code.

<div id="bioBox">


In your slideshow footer code change this

slideshowUrl = "http://kellyhenry.smugmug.com/Nature";

to this

slideshowUrl = "http://kellyhenry.smugmug.com/gallery/2034423";

You are pointing to a category and not a gallery.

Kluck
Sep-09-2007, 03:02 PM
Alright, well I changed everything just like you said to and still have no slideshow......any other ideas that would be of assistance?

Kluck
Sep-09-2007, 03:06 PM
nvm I take that back.....it worked.....i need to play with the size now..


thank you so much for helping me with that!

Kluck
Sep-09-2007, 03:37 PM
thanks again...i just have one more question...how can I remove the "kellyhenry's home" that is located on the home page?

denisegoldberg
Sep-09-2007, 03:52 PM
i just have one more question...how can I remove the "kellyhenry's home" that is located on the home page?
See # 24 in the Customization FAQ: http://www.smugmug.com/help/customize-faq.mg.

--- Denise

Kluck
Sep-09-2007, 04:01 PM
thank you so much! you both were very helpful!

Kluck
Sep-10-2007, 12:02 PM
sorry guys...one more question....this is what I have currently in my css for the banner..

#my_banner {
width: 750px;
height: 150px;
margin-top: 20px;
margin-right: 312px;
background: url(http://kellyhenry.smugmug.com/photos/154991519-O.jpg) no-repeat;
}


I am running into the problem that it is only centered when I am in ful screen....it does not adapt like the rest of the website. What is the correct code to place the banner 20px from the top of the page but still be centered?

Thank you again for the help!


kellyhenry.smugmug.com

Allen
Sep-10-2007, 03:59 PM
sorry guys...one more question....this is what I have currently in my css for the banner..

#my_banner {
width: 750px;
height: 150px;
margin-top: 20px;
margin-right: 312px;
background: url(http://kellyhenry.smugmug.com/photos/154991519-O.jpg) no-repeat;
}


I am running into the problem that it is only centered when I am in ful screen....it does not adapt like the rest of the website. What is the correct code to place the banner 20px from the top of the page but still be centered?

Thank you again for the help!


kellyhenry.smugmug.com
Add the margin in bold, it will center what ever width it is. And remove the
margin-right. Put it first, before any tweaks like the margin-top you have.

Or you could combine them and write it.
margin: 20px auto 0 auto; /* top right bottom left */

#my_banner {
width: 750px;
height: 150px;
margin: 0 auto; /* top/bottom right/left */
margin-top: 20px;
/* margin-right: 312px; */
background: url(http://kellyhenry.smugmug.com/photos/154991519-O.jpg) no-repeat;
}


Edit:
Just checked your site, use this.

#my_banner {
width: 750px;
height: 150px;
margin: 0 auto;
margin-top: 20px;
background: url(http://kellyhenry.smugmug.com/photos/154991519-O.jpg) no-repeat;
}