PDA

View Full Version : Galleries Thumbs in HTML Page


videoopp
Aug-16-2006, 02:54 PM
I am closing in on getting my site customized. Thanks to all of the posts here, I have been able to do a whole lot more customizing then I though I would be able to do, as I know very little HTML or CSS. SM and Dgrin are amazing!

I just have a couple of more things that I would like to do.

I have shut off showing the gallery thumbs on my home page, but would like to show them on a seperate HTML page. What do I need to enter into my HTML page to get those to show up?

The other thing I would like to do is have a featured Keyword list page. What do I need to enter into my html to get the box of key words to show up.

Thanks

Dna
Aug-16-2006, 03:47 PM
The other thing I would like to do is have a featured Keyword list page. What do I need to enter into my html to get the box of key words to show up. Thankshttp://www.worldviewimages.smugmug.com/keyword/

:wink

dna

richW
Aug-16-2006, 03:53 PM
I have shut off showing the gallery thumbs on my home page, but would like to show them on a seperate HTML page. What do I need to enter into my HTML page to get those to show up?

Try David's (devbobo) hack for showing the galleries on their own page.
It is #78 on the Customization FAQ List. http://www.dgrin.com/showthread.php?t=26043


The other thing I would like to do is have a featured Keyword list page. What do I need to enter into my html to get the box of key words to show up.



As for the keyword page you already have one.
Access it here: http://www.worldviewimages.smugmug.com/keyword/
The same would go for date search & popular pictures.
http://www.worldviewimages.smugmug.com/date/
http://www.worldviewimages.smugmug.com/popular/

Edit: I got side tracked and forgot to send the message, I see DNA got you covered on the keyword issue..

videoopp
Aug-16-2006, 04:21 PM
http://www.worldviewimages.smugmug.com/keyword/

:wink

dna

But what if I want that on this page? http://www.worldviewimages.smugmug.com/gallery/1781647

Dna
Aug-16-2006, 05:01 PM
But what if I want that on this page? http://www.worldviewimages.smugmug.com/gallery/1781647Same way you did this page ...
http://www.worldviewimages.smugmug.com/gallery/1780832

<html>
<a href="http://www.worldviewimages.smugmug.com/keyword/">Click here for Keywords !</a>
</html>

That's for a basic link, you can then add in a class and stlye via your css.

Dna

videoopp
Aug-16-2006, 05:25 PM
Same way you did this page ...
http://www.worldviewimages.smugmug.com/gallery/1780832

<html>
<a href="http://www.worldviewimages.smugmug.com/keyword/">Click here for Keywords !</a>
</html>

That's for a basic link, you can then add in a class and stlye via your css.

Dna

Thanks Dna for your kind patience. I can see how that would work, and I think I could live with it. But I am sure that I have seen other SM sites that have more customization then what the keyword page seems to allow for. Is there any way to add html to the keyword page?

videoopp
Aug-17-2006, 09:54 AM
[quote=richW]Try David's (devbobo) hack for showing the galleries on their own page.
It is #78 on the Customization FAQ List. http://www.dgrin.com/showthread.php?t=26043


quote]

Is this the only way to do this? I have tried to impliment this, but when I show galeries on the "featured" page, They also show up on the home page. I have added the following to my CSS to try and hide these on the home page, but they still show up.

.homepage #galleriesBox { display: none;}
.loggedIn #galleriesBox {display:block;}
.homepage #featuredBox {display:none;}
.featured #featuredBox {display:block !important;}
.featured #categoriesBox {display:none !important;}


Any assistance would be deeply appreciated!