Options

some galleries not available...help

dreamcometruedreamcometrue Registered Users Posts: 139 Major grins
edited July 12, 2012 in SmugMug Support
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

Comments

  • Options
    AllenAllen Registered Users Posts: 10,012 Major grins
    edited July 12, 2012
    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.
    What is the link to this galleries page?
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • Options
    dreamcometruedreamcometrue Registered Users Posts: 139 Major grins
    edited July 12, 2012
    idk what you need me to post to see...here is the css..
    #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;
    }
    Artistic Design Photography LLC
    http://www.adesignphotography.com
  • Options
    dreamcometruedreamcometrue Registered Users Posts: 139 Major grins
    edited July 12, 2012
    when i click on the links: clients, people, st. paul, nature, or black and white.....
    Artistic Design Photography LLC
    http://www.adesignphotography.com
  • Options
    richWrichW Registered Users Posts: 941 Major grins
    edited July 12, 2012
    when i click on the links: clients, people, st. paul, nature, or black and white.....
    Looks like you changed your site nickname at one time and it's still in the navbar. This will cause the 404 page to show.

    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&gt;
    <li><a href="http://artisticdesign.smugmug.com/People">People</a></li&gt;
    <li><a href="http://artisticdesign.smugmug.com/St. Paul">St.Paul</a></li>
    <li><a href="http://artisticdesign.smugmug.com/Nature">Nature</a></li&gt;
    <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>
Sign In or Register to comment.