The most popular are now on the galleries page so turn them
off on the homepage by adding bold.
.homepage #popularPhotos,
.homepage #galleriesBox,
.homepage #categoriesBox,
.homepage #featuredBox {
display: none;
}
instead of none just put block? or add the whole thing?
You have a link in your navbar for the popular photos so you don't really need
to show them on your galleries page. So don't add the bold if you don't want
to.
.galleries #popularPhotos,
.galleries #galleriesBox,
.galleries #categoriesBox,
.galleries #featuredBox {
display: block;
}
Comments
My Website index | My Blog
But.
Nuther tweak, need to move IE photo right a little.
Add red.
.gallery_3319322 #galDescImg {
position: relative;
height: 150px;
width: 200px;
margin-top: 20px;
_top: 20px; /* IE6 */
margin-left: 30px;
_left: 30px; /* IE6 */
border:4px double red;
}
BTW, what browser and OS are your using? Helps me know what you're seeing.
My Website index | My Blog
My Website index | My Blog
Firefox fairly good but IE6 needs different numbers some time.
So both Firefox and IE6 look great now.
What's next? Slide show? It will replace the bio on your homepage when added.
My Website index | My Blog
gallery...
navbar for "galleries" will work.
Add this to the top of your javascript. Add this to the top of your footer code. Add this to your CSS
My Website index | My Blog
The most popular are now on the galleries page so turn them
off on the homepage by adding bold.
.homepage #popularPhotos,
.homepage #galleriesBox,
.homepage #categoriesBox,
.homepage #featuredBox {
display: none;
}
.galleries #popularPhotos,
.galleries #galleriesBox,
.galleries #categoriesBox,
.galleries #featuredBox {
display: block;
}
My Website index | My Blog
My Website index | My Blog
to show them on your galleries page. So don't add the bold if you don't want
to.
.galleries #popularPhotos,
.galleries #galleriesBox,
.galleries #categoriesBox,
.galleries #featuredBox {
display: block;
}
My Website index | My Blog
.galleries #popularPhotos,
.homepage #popularPhotos,
.homepage #galleriesBox,
.homepage #categoriesBox,
.homepage #featuredBox {
display: none;
}
.galleries #bioBox {
display: none;
}
.galleries #galleriesBox,
.galleries #categoriesBox,
.galleries #featuredBox {
display: block;
}
.loggedIn .homepage #galleriesBox,
.loggedIn .homepage #categoriesBox {
display: block;
}
My Website index | My Blog
My Website index | My Blog
new which is the featured gallery...im usin it as a NEW so i can put new pics in there...and keep it updated
You want the "new" in the navbar to go to a page with the featured galleries?
This post explains it.
Add the red in your footer code in the middle here.
<script>
if (hasPath("galleries"))
YD.addClass(document.body, "galleries");
if (hasPath("featured"))
YD.addClass(document.body, "featured");
</script>
In your CSS add the red.
.galleries #featuredBox,
.homepage #featuredBox,
.featured #bioBox,
.featured #categoriesBox,
.featured #galleriesBox,
.featured #popularPhotos,
.galleries #popularPhotos,
.homepage #popularPhotos,
.homepage #galleriesBox,
.homepage #categoriesBox,
.homepage #featuredBox {
display: none;
}
.featured #featuredBox {display: block;}
In your header code for your nav
change this
<li><a href="http://nickname.smugmug.com">New</a></li>
to this
<li><a href="/featured">New</a></li>
My Website index | My Blog
.featured #bioBox,
.featured #categoriesBox,
.featured #galleriesBox,
.featured #popularPhotos,
.galleries #popularPhotos,
.homepage #featuredBox,
.homepage #popularPhotos,
.homepage #galleriesBox,
.homepage #categoriesBox,
.homepage #featuredBox {
display: none;
}
.galleries #bioBox {
display: none;
}
.galleries #galleriesBox,
.galleries #categoriesBox {
display: block;
}
.galleries #featuredBox {
display: none !important;
}
.featured #featuredBox {display: block;}
.loggedIn .homepage #galleriesBox,
.loggedIn .homepage #categoriesBox {
display: block;
}
My Website index | My Blog
Got time tonight?
My Website index | My Blog
First step.
Download the text file here in post #2 and paste into the bottom of your javascript.
Paste it all in (about 370 lines) "as is" no changes. Use notepad or pure text
editor not Word to open the text file and copy form there.
My Website index | My Blog
Look at this section here.
The Slideshow I
My Website index | My Blog