Options

A few questions

StrickStrick Registered Users Posts: 79 Big grins
I have been setting up my site, and thanks to the tutorials and help here I have done a few things to it. I am having a few problems though. I am trying to get rid of the breadcrumbs off my "about me" and "guestbook" page. Also I set them up by making them a gallery and adding a description to the photo but I can't seem to figure out how to disable opening the picture.

Here is the site.

Also how can I move the slide show up higher and run the photos longer. It is only running 2 of the 3 photos in that gallery at the moment and I can't figure that out either (that is no big deal though.

I have read and searched to fix these problems. I have tried just about every code that I have found but I can't seem to get these problems fixed.

I know it is a lot of questions but if you can help on any of them that would be great.

Thanks
www.zoominphoto.com
Various pieces of Canon gear.

Comments

  • Options
    AllenAllen Registered Users Posts: 10,011 Major grins
    edited September 11, 2007
    Strick wrote:
    I have been setting up my site, and thanks to the tutorials and help here I have done a few things to it. I am having a few problems though. I am trying to get rid of the breadcrumbs off my "about me" and "guestbook" page. Also I set them up by making them a gallery and adding a description to the photo but I can't seem to figure out how to disable opening the picture.

    Here is the site.

    Also how can I move the slide show up higher and run the photos longer. It is only running 2 of the 3 photos in that gallery at the moment and I can't figure that out either (that is no big deal though.

    I have read and searched to fix these problems. I have tried just about every code that I have found but I can't seem to get these problems fixed.

    I know it is a lot of questions but if you can help on any of them that would be great.

    Thanks

    change this - you're missing the leading period and need a space before #altViews/
    gallery_3441571 #breadcrumb {visibility: hidden;}
    .gallery_3441571#altViews {visibility: visible;}
    
    gallery_3441848 #breadcrumb {visibility: hidden;}
    .gallery_3441848#altViews {visibility: visible;}
    
    to this
    .gallery_3441571 #breadcrumb {display: none;}
    .gallery_3441571 #altViews {visibility: visible;}
    
    .gallery_3441848 #breadcrumb {display: none;}
    .gallery_3441848 #altViews {visibility: visible;}
    

    In your footer code remove the #. You're show is not running here in Firefox.
    slideshowUrl = "http://zoominphoto.smugmug.com/gallery/3449372#";
    like this
    slideshowUrl = "http://zoominphoto.smugmug.com/gallery/3449372";

    There is a bug in the show code that skips the first photo in a gqallery.
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • Options
    StrickStrick Registered Users Posts: 79 Big grins
    edited September 11, 2007
    Thanks. I cleaned that part up. It is amazing what you can miss, especially when you don't know anything about css, java, etc...:D

    Is the show working now?
    www.zoominphoto.com
    Various pieces of Canon gear.
  • Options
    AllenAllen Registered Users Posts: 10,011 Major grins
    edited September 11, 2007
    Strick wrote:
    Thanks. I cleaned that part up. It is amazing what you can miss, especially when you don't know anything about css, java, etc...:D

    Is the show working now?
    No, but it should when you change this.:D


    slideshowContainerId = "biobox";

    to this

    slideshowContainerId = "bioBox";
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • Options
    StrickStrick Registered Users Posts: 79 Big grins
    edited September 11, 2007
    Allen wrote:
    No, but it should when you change this.:D


    slideshowContainerId = "biobox";

    to this

    slideshowContainerId = "bioBox";

    I got a little chuckle out of that.:D
    www.zoominphoto.com
    Various pieces of Canon gear.
  • Options
    AllenAllen Registered Users Posts: 10,011 Major grins
    edited September 11, 2007
    Strick wrote:
    I got a little chuckle out of that.:D
    thumb.gif Working great now.
    Al - Just a volunteer here having fun
    My Website index | My Blog
Sign In or Register to comment.