some galleries not available...help
dreamcometrue
Registered Users Posts: 139 Major grins
Hello fellow drinners. I attempted to redo my website and must have messed up some code somewhere......help. Now I am not able to open galleries. I end up with a page stating.." not what you are looking for" etc. unsure what to do next.
Artistic Design Photography LLC
http://www.adesignphotography.com
http://www.adesignphotography.com
0
Comments
My Website index | My Blog
#bioBox .photo {
display: none;
}
#my_header {
height: 50px;
border-bottom: 1px solid #ccc;
margin: 0 10px 15px;
padding: 0 5px;
}
#my_banner {
width: 400px;
height: 50px;
margin: 5px 0;
background: url(http://artisticdesign.smugmug.com/photos/1184241097_tnqDj-S.png) no-repeat;
_background: E8A446;
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader (enabled=true,
sizingmethod=image, src='/photos/1184241097_tnqDj-S.png');
}
#navcontainer {
float: right;
margin: -50px 10px 20px 0;
width: 510px;
}
#navcontainer ul {
margin: 0;
padding: 0;
list-style-type: none;
font-size: 16px;
_font-size: 14px;
font-variant: small-caps;
}
#navcontainer ul li {
display: inline;
}
#navcontainer ul li a {
text-decoration: none;
padding: 0px 3px;
color: #fff;
}
#navcontainer ul li a:hover {
color: #8cca1e;
}
#feeds { display:none}
/* hides the word home */
#userHome {
display: none;
}
/* hides your name (including any 's) */
#userName {
display: none;
}
http://www.adesignphotography.com
http://www.adesignphotography.com
Might be best to change the urls in the navbar to relative urls. They'll work well with both your SmugMug url and your custom domain name.
In the header section, change this:
<li><a href="/">Home</a></li>
<li><a href="/gallery/6663259_3eQ2f">About Me, Pricing and Guestbook</a></li>
<li><a href="/gallery/6453190_D6Unx">My Favorites</a></li>
<li><a href="http://artisticdesign.smugmug.com/Professional">Clients</a></li>
<li><a href="http://artisticdesign.smugmug.com/People">People</a></li>
<li><a href="http://artisticdesign.smugmug.com/St. Paul">St.Paul</a></li>
<li><a href="http://artisticdesign.smugmug.com/Nature">Nature</a></li>
<li><a href="http://artisticdesign.smugmug.com/Art/Black-and-White">Black and White</a></li>
To this:
<li><a href="/">Home</a></li>
<li><a href="/gallery/6663259_3eQ2f">About Me, Pricing and Guestbook</a></li>
<li><a href="/gallery/6453190_D6Unx">My Favorites</a></li>
<li><a href="/Professional">Clients</a></li>
<li><a href="/People">People</a></li>
<li><a href="/St. Paul">St.Paul</a></li>
<li><a href="/Nature">Nature</a></li>
<li><a href="/Art/Black-and-White">Black and White</a></li>