PDA

View Full Version : footer absent on html only page; footer too close to end of page


Kam01
Nov-02-2009, 07:32 AM
Hello!

1. My html only page "About Raymak" does not have a footer and a comments option. Even though I have custom footers on all other pages and in the gallery settings the "comments" option is on, they are still not there on the page.



2. My custom footer is too close to the end of page. It's like that on all pages where the footer is present. How can I create more space between them on each page of my website?



2. On my homepage there's too much space between slideshow and filmstrip. How to create more space between them?




Thanks a lot!
Kam

Allen
Nov-02-2009, 08:31 AM
Hello!

1. My html only page "About Raymak" does not have a footer and a comments option. Even though I have custom footers on all other pages and in the gallery settings the "comments" option is on, they are still not there on the page.

http://www.raymakphotography.com/gallery/10121327_ZFYD8

2. My custom footer is too close to the end of page. It's like that on all pages where the footer is present. How can I create more space between them on each page of my website?

http://www.raymakphotography.com/

2. On my homepage there's too much space between slideshow and filmstrip. How to create more space between them?

http://www.raymakphotography.com/


Thanks a lot!
Kam
There has to be at least one photo in a gallery for the comments to
show. See the CSS and hints on this page.

http://allen-steve.smugmug.com/gallery/3819841

I find it best to store the photo that is used in the album description in
the gallery that it is used, then you'll always know where it is. Then
hide it with CSS. This will also make sure the comments will show.


#my_footer_note {
font-family: Verdana, Arial;
font-weight: bold;
text-decoration: underline;
font-style: normal;
text-align: center;
margin-top: 20px;
}

Kam01
Nov-02-2009, 11:36 AM
There has to be at least one photo in a gallery for the comments to
show. See the CSS and hints on this page.

http://allen-steve.smugmug.com/gallery/3819841

I find it best to store the photo that is used in the album description in
the gallery that it is used, then you'll always know where it is. Then
hide it with CSS. This will also make sure the comments will show.


#my_footer_note {
font-family: Verdana, Arial;
font-weight: bold;
text-decoration: underline;
font-style: normal;
text-align: center;
margin-top: 20px;
}

Hi Al, thanks for a quick reply!

I uploaded the photo used for the "About Raymak" in that same gallery and tried to hide it by using the CSS as you suggested, but it didn't work. The photo is still visible at the bottom..


The part of the CSS I used was:

/* START gallery XXXXXXX */
.gallery_XXXXXXX .nophotos h3, /* if no photos in gallery */
.gallery_XXXXXXX #albumNav_top,
.gallery_XXXXXXX #albumNav_bottom,
.notLoggedIn .gallery_XXXXXXX .journal_entry, /* hides photos in gallery */
.notLoggedIn .gallery_XXXXXXX #breadcrumb {display: none;}
/* END gallery XXXXXXX */

I'm not that great with CSS so I guess I missed something somewhere..
Would appreciate any help with this..

Thanks!

Allen
Nov-02-2009, 09:07 PM
Hi Al, thanks for a quick reply!

I uploaded the photo used for the "About Raymak" in that same gallery and tried to hide it by using the CSS as you suggested, but it didn't work. The photo is still visible at the bottom..

http://raymakphotography.smugmug.com/gallery/10121327_ZFYD8

The part of the CSS I used was:

/* START gallery XXXXXXX */
.gallery_XXXXXXX .nophotos h3, /* if no photos in gallery */
.gallery_XXXXXXX #albumNav_top,
.gallery_XXXXXXX #albumNav_bottom,
.notLoggedIn .gallery_XXXXXXX .journal_entry, /* hides photos in gallery */
.notLoggedIn .gallery_XXXXXXX #breadcrumb {display: none;}
/* END gallery XXXXXXX */

I'm not that great with CSS so I guess I missed something somewhere..
Would appreciate any help with this..

Thanks! You are using the new journal style. Also the gallery key _ZFYD8 is not used in CSS.
Change these

/* html only page for gallery 10121327_ZFYD8 */
.gallery_10121327_ZFYD8 .nophotos {
display: none;
}
.gallery_10121327_ZFYD8 .pageNav {
display: none;
}

to this

/* html only page for gallery 10121327_ZFYD8 */
.notLoggedIn .gallery_10121327 #breadcrumb,
.gallery_10121327 #albumNav_top,
.notLoggedIn .gallery_10121327 #journal_entries,
.gallery_10121327 .pageNav {
display: none;
}

Kam01
Nov-03-2009, 04:43 AM
You are using the new journal style. Also the gallery key _ZFYD8 is not used in CSS.
Change these

/* html only page for gallery 10121327_ZFYD8 */
.gallery_10121327_ZFYD8 .nophotos {
display: none;
}
.gallery_10121327_ZFYD8 .pageNav {
display: none;
}

to this

/* html only page for gallery 10121327_ZFYD8 */
.notLoggedIn .gallery_10121327 #breadcrumb,
.gallery_10121327 #albumNav_top,
.notLoggedIn .gallery_10121327 #journal_entries,
.gallery_10121327 .pageNav {
display: none;
}

I just posted this code into CSS window and changed the gallery style to Journal Old.
But the result is the same. The photo is still there. Maybe I had to use some other code apart from this one?

Allen
Nov-03-2009, 04:54 AM
I just posted this code into CSS window and changed the gallery style to Journal Old.
But the result is the same. The photo is still there. Maybe I had to use some other code apart from this one?

http://www.raymakphotography.com/gallery/10121327_ZFYD8
You changed to a different style so need a different name in the CSS rule.

/* html only page for gallery 10121327_ZFYD8 */
.notLoggedIn .gallery_10121327 #breadcrumb,
.gallery_10121327 #albumNav_top,
.notLoggedIn .gallery_10121327 .journal_entry,
.gallery_10121327 .pageNav {
display: none;
}

Kam01
Nov-03-2009, 05:22 AM
You changed to a different style so need a different name in the CSS rule.

/* html only page for gallery 10121327_ZFYD8 */
.notLoggedIn .gallery_10121327 #breadcrumb,
.gallery_10121327 #albumNav_top,
.notLoggedIn .gallery_10121327 .journal_entry,
.gallery_10121327 .pageNav {
display: none;
}

Sorry, Al, you lost me there! :huh
Should I just write .journal_entry or change journal_entry to something else, if yes then to what?
So far I left it as .journal_entry and it didn't work again.

Allen
Nov-03-2009, 05:28 AM
Sorry, Al, you lost me there! :huh
Should I just write .journal_entry or change journal_entry to something else, if yes then to what?
So far I left it as .journal_entry and it didn't work again.
Change the # to .

.notLoggedIn .gallery_10121327 #journal_entry,

like this

.notLoggedIn .gallery_10121327 .journal_entry,

Kam01
Nov-03-2009, 05:37 AM
Change the # to .

.notLoggedIn .gallery_10121327 #journal_entry,

like this

.notLoggedIn .gallery_10121327 .journal_entry,

It worked!!! :clap
Thanks so much AL, you're the man! :thumb

Allen
Nov-03-2009, 07:04 AM
There's just one more thing..
On the page the photo that appears in the visitor view is not protected, I guess because it's set to be html. (In the gallery settings the pictures are set to "protected".)
Would you happen to know a way to protect it?

http://www.raymakphotography.com/gallery/10121327_ZFYD8

Thanks again for everything!
... and is there a reason you don't want this photo/of you stolen? :D
There is no way to prevent it no mater what you do. The direct photo link
can be brought up in the browser and saved.

Kam01
Nov-03-2009, 07:28 AM
... and is there a reason you don't want this photo/of you stolen? :D
There is no way to prevent it no mater what you do. The direct photo link
can be brought up in the browser and saved.

So the only protection available is in the gallery settings? And does the "protect" option really ensure that the photos will be safe from download?

Hehe.. it surely got me thinking.. :D