Results 1 to 7 of 7

Thread: photographer and ex-web geek thought he could make a website...

  1. #1
    Join Date
    May 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default photographer and ex-web geek thought he could make a website...

    Hey guys, My name is chad boutin, I am a photographer in the NW and thought one day after being at the mercy of my "graphic designer" friends for a website update. After many self induced web failures and horrible continuity... I started telling myself "You can do it.. its just a website, make something simple, html only, clean, your a photographer, show images.. thats it.

    Being a former computer club president in 1986, I thought to myself.. "You programmed hand code basic at the age of 14, cmon, its html, how hard is it?

    Im so pissed.

    Here's my need.

    a menu. thats it, you go to my url and its an opening image and a menu, maybe its hidden, maybe its industrial and grey and simple.

    Ok, sounds easy... I code one. Simply, with a script found online. simplify the colors... it works.

    Then I figure, lets have two horisontal frames... 20 percent top... 80 down, top contains a menu (hey ive built this!) bottom is premade flash slideshows made in adobe lightroom already built and hosted on my server.

    for instance, http://www.chadboutin.com/lifestyle/

    Ive fit them in a frame by just inserting the code inside the frameset.

    <frame src="http://www.chadboutin.com/lifestyle">

    But for the life of me, i cant get the target to produce in that page.. I tried loading the nav.html(the fancy menu im trying to use) into a frame..

    Now here is where i humble myself to ridicule, the same shame I pour intensely on any amateur Photographer I find trying to do things i do with the tools and experience I have at my disposal..

    I kneel in pity and the obvious error of mixing coding metaphors...

    my (crappy ass) website www.chadboutin.com

    where i want to go

    http://www.chadboutin.com/turf/

    if i could manipulate these lightroom galleries, i would.. but i cant, and I would like to keep some controll over the website so I can update...

    siggghh...

    thanks

  2. #2
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    Nice story/rant...

    What's the question, exactly? We don't need the entire narrative/back-story to help. But do need the technical details of what it is you're trying to do and what's not working.

  3. #3
    Join Date
    May 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default sorry for the rant...

    basically i am trying to have a navigation in a (upper) frame directing the external menu option to the second window (lower)

    horizontal frames two rows.

    <frameset rows="20%,*">
    <frame src="upper">
    <frame src="lower">
    </frameset>

    upper frame carries a menu or a navigation of some kind... maybe like..

    http://www.chadboutin.com/website/navigator.html

    lower carries a flash based auto sizing player made in lightroom.

    http://www.chadboutin.com/lifestyle

    or

    http://www.chadboutin.com/turf/


    I just want to have the menu direct to the lower frame..

    image based portfolio presentation..

  4. #4
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    Ahh, I see..

    HTML Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
    "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
    <head>
    <title>Chad Boutin Photography</title>
    </head>
    
    <frameset rows="20%,*">
    <frame src="http://www.chadboutin.com/website/navigator.html">
    <frame src="http://www.chadboutin.com/turf/" name="bottom">
    </frameset>
    
    </html>
    In your menu, change the onChange javascript to this:

    Code:
    onChange="window.open(document.begin.menu.options[document.begin.menu.selectedIndex].value, 'bottom')
    By the way you might want to read this about the pros/cons of using frames. I tend to stay far far away from them because they cause more trouble than I find they're worth. You can make an informed decision after reading that article.

  5. #5
    Join Date
    May 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    im not married to frames... just need a nudge in the right direction...

    suggestions?

  6. #6
    Join Date
    Mar 2008
    Posts
    222
    Thanks
    10
    Thanked 3 Times in 3 Posts

    Default

    Hi there,

    Sorry to bump in with no suggestions . let me just give some comments & i`m off. your photographs were very nicely taken. great job

    keep up the good work & good luck for your galley

  7. #7
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    Quote Originally Posted by chadboutin View Post
    im not married to frames... just need a nudge in the right direction...

    suggestions?
    Do you have PHP available on your server? If you're not sure you can run a simple test.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •