PDA

View Full Version : Need Help On Contact US page


ADubin
Aug-06-2008, 06:20 AM
I'm trying to improve the appearance of this page - http://ldavisphotography.smugmug.com/gallery/5628913_GX46Y

Ref to the attachment.

I would like to get rid of the "ldavisphotography (http://ldavisphotography.smugmug.com/) > Other (http://ldavisphotography.smugmug.com/Other) > Contact Us" and "This is a brand new gallery with no photos."

Any help is much appreciated. ADubin

-------------------------------------------------


CSS - Script

/* html only page for gallery_5628913_GX46Y */
.gallery_5628913_GX46Y .nophotos {
display: none;
}
.gallery_5628913_GX46Y .pageNav {
display: none;
}

------------------------------------------------
Gallery Description

<div align="center">
<p><font size="5" color="#ffcc66" face="Helvetica, Geneva, Arial, SunSans-Regular, sans-serif">Photographer's Name - Larry
Davis</font></br>
<p><font size="5" color="#ffcc66" face="Helvetica, Geneva, Arial, SunSans-Regular, sans-serif">Address - 3191
Tuscawillow Dr<p>
Melbourne, FL 32934</font></br>
<p><font size="5" color="#ffcc66" face="Helvetica, Geneva, Arial, SunSans-Regular, sans-serif">Phone Number -
(321) 752-6197</font></br>
<p><a href="<A href="mailto:ldavis8852@aol.com"><font">mailto:ldavis8852@aol.com"><font size="5" color="#ffcc66" face="Helvetica, Geneva, Arial, SunSans
-Regular, sans-serif">Email Larry Davis</font></a></p>
</div>

Allen
Aug-06-2008, 06:25 AM
I'm trying to improve the appearance of this page - http://ldavisphotography.smugmug.com/gallery/5628913_GX46Y

Ref to the attachment.

I would like to get rid of the "ldavisphotography (http://ldavisphotography.smugmug.com/) > Other (http://ldavisphotography.smugmug.com/Other) > Contact Us" and "This is a brand new gallery with no photos."

Any help is much appreciated. ADubin

-------------------------------------------------
...
The security key is not used in CSS, only in links like your banner photo.
Change these

/* html only page for gallery_5628913_GX46Y */
.gallery_5628913_GX46Y .nophotos {
display: none;
}
.gallery_5628913_GX46Y .pageNav {
display: none;
}

to these

/* html only page for gallery_5628913_GX46Y */
.gallery_5628913 .nophotos h3 {
display: none;
}
.gallery_5628913 .pageNav {
display: none;
}

.gallery_5628913 #breadcrumb {visibility: hidden;}
.gallery_5628913 .loggedIn #breadcrumb {visibility: visible;}

ADubin
Aug-06-2008, 06:33 AM
Allen,

Your code worked great. Thanks a million, ADubin:clap :clap


The security key is not used in CSS, only in links like your banner photo.
Change these

/* html only page for gallery_5628913_GX46Y */
.gallery_5628913_GX46Y .nophotos {
display: none;
}
.gallery_5628913_GX46Y .pageNav {
display: none;
}

to these

/* html only page for gallery_5628913_GX46Y */
.gallery_5628913 .nophotos h3 {
display: none;
}
.gallery_5628913 .pageNav {
display: none;
}

.gallery_5628913 #breadcrumb {visibility: hidden;}
.gallery_5628913 .loggedIn #breadcrumb {visibility: visible;}