Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

I made a silly silly mistake..

Options
  • 04-02-2009 5:26am
    #1
    Registered Users Posts: 5,728 ✭✭✭


    Im to tired atm to try and figure out how to fix.. Im going post it up and then head to bed hopefully someone here can help..

    Basically heres the website: http://darrencarlinphoto.com/

    I did it the lazy way with photoshop but thats not the problem.. The 4 buttons at the top don't work when you navigate away from the main page into one of the 4 galleries.. So you can't go back with clicking back in the broswer. I forgot to put the slices in for those 4 buttons on those pages! :mad:

    Im trying to figure a way off adding the 4 links on the 4 pages without having to start again?

    Any ideas?

    Network with your people: https://www.builtinireland.ie/



Comments

  • Registered Users Posts: 1,452 ✭✭✭tomED


    Do you have a WYSIWYG html editor? If you do, it will be very straight forward to open the files up in this and create the links. If not....

    Open notepad.

    You've already created a link to the homepage on the home button:
    [HTML]<a href="index.html"><img src="images/index_03.jpg" alt="" width="66" height="36" border="0"></a>[/HTML]

    So just go into the other pages and put the A HREF tag around the image in question.

    It looks like you also haven't created those inner pages either, so those pages will need to be created.

    It's not going to be "easy" if you've had trouble already!

    Also - don't use photoshop - look at your code, it's doubled up on the graphics for the top navigation. That's really not necessary!


  • Registered Users Posts: 5,728 ✭✭✭dazftw


    I actually went and kinda sorted it out before I came on here to check.. Its alright now..

    What do you mean the code is doubled up on the graphics?

    Im going try and finish the about contact & links pages tonight!

    Network with your people: https://www.builtinireland.ie/



  • Registered Users Posts: 6,511 ✭✭✭daymobrew


    Quick aside. You can 'group' your pictures to make browsing in lightbox easier.
    The following is from the Lightbox docs:
    If you have a set of related images that you would like to group, follow step one but additionally include a group name between square brackets in the rel attribute. For example:
    <a href="images/image-1.jpg" rel="lightbox[roadtrip]">image #1</a>
    <a href="images/image-2.jpg" rel="lightbox[roadtrip]">image #2</a>
    <a href="images/image-3.jpg" rel="lightbox[roadtrip]">image #3</a>
    

    No limits to the number of image sets per page or how many images are allowed in each set. Go nuts!

    You could change 'roadtrip' to 'skateboarding', 'people' etc on the appropriate pages.


  • Registered Users Posts: 1,452 ✭✭✭tomED


    dazftw wrote: »
    What do you mean the code is doubled up on the graphics?

    Originally you had contact us, links etc on all pages. On each page, these buttons we're named differently.

    E.g. Home page - home button http://darrencarlinphoto.com/images/index_03.jpg

    Skateboard page - http://darrencarlinphoto.com/skateboardingimages/skateboarding_01.jpg

    You had this for all the navigation items.


  • Registered Users Posts: 5,728 ✭✭✭dazftw


    daymobrew wrote: »
    Quick aside. You can 'group' your pictures to make browsing in lightbox easier.
    The following is from the Lightbox docs:


    You could change 'roadtrip' to 'skateboarding', 'people' etc on the appropriate pages.

    Just did that there, now the prev & next buttons aren't showing up.. there set into the right directory but its not working any ideas?

    Network with your people: https://www.builtinireland.ie/



  • Advertisement
  • Registered Users Posts: 6,511 ✭✭✭daymobrew


    dazftw wrote: »
    Just did that there, now the prev & next buttons aren't showing up.. there set into the right directory but its not working any ideas?
    #prevLink:hover, #prevLink:visited:hover { background: url(lightbox/prevlabel.gif) left 15% no-repeat; }
    #nextLink:hover, #nextLink:visited:hover { background: url(lightbox/nextlabel.gif) right 15% no-repeat; }
    
    Remove the 'lightbox/' part. The url is relative to the css file and they are in the same directory as the lightbox.css file. Currently it is looking for http://darrencarlinphoto.com/lightbox/lightbox/prevlabel.gif


  • Registered Users Posts: 5,728 ✭✭✭dazftw


    thank you sir :)

    Network with your people: https://www.builtinireland.ie/



Advertisement