navigation
a webmaster learning community
     Home    Register     Search      Help      Login    
Sponsors

Shopping Cart Software
Ecommerce software integrated into Frontpage, Dreamweaver and Golive templates. No monthly fees and available in ASP and PHP versions.

Website Templates
We also have a wide selection of Dreamweaver, Expression Web and Frontpage templates as well as webmaster tools and CSS layouts.

Frontpage website templates
Creative Website Templates for FrontPage, Dreamweaver, Flash, SwishMax

Search Forums
 

Advanced search
Recent Posts

 Todays Posts
 Most Active posts
 Posts since last visit
 My Recent Posts
 Mark posts read

Microsoft MVP

 

Frames and photo gallery

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
Printable Version 

All Forums >> Web Development >> Microsoft FrontPage Help >> Frames and photo gallery
Page: [1]
 
DLMST

 

Posts: 81
Joined: 9/11/2002
Status: offline

 
Frames and photo gallery - 8/24/2004 11:05:04   
Hello there, I'm considering a change to the way I currently have my photo galleries set up on my web site. I'm wondering about using Frames where the bottom of a gallery page has a scroll bar with thumbnails below it. When you click on the thumbnail a larger version of that image appears in the large frame above. It's a feature of Photoshop Elements 2. Currently I have a page which shows all the thumbs for that particular gallery. When you click on the thumb you are taken to another page with the enlarged view and a few notations on it (ex. http://www.dstappan.com/prod16.htm ).

I've read about a few of the problems associated with using frames (search engine listing confusion, etc.). To get around the search engine listing problem, couldn't I just include search terms in the header of the gallery index page that correspond to each of the images on that gallery page? That way, if someone searches for an image that matches one of those terms, the frame index page for that gallery would appear? Or am I misunderstanding the problem?

Any suggestions would be appreciated.
Cheers,
DLMST
dpf

 

Posts: 7121
Joined: 11/12/2003
From: India-napolis
Status: offline

 
RE: Frames and photo gallery - 8/24/2004 11:11:11   
quote:

To get around the search engine listing problem, couldn't I just include search terms in the header of the gallery index page that correspond to each of the images on that gallery page? That way, if someone searches for an image that matches one of those terms, the frame index page for that gallery would appear? Or am I misunderstanding the problem?

yes you can add keywords on the main frame page to reflect all of the frame pages that are linked in. However, the essential problem with frames is that they contain no html for the spider to read - they simply indicate frameset and reference the frames/pages the comprise the frames and, thus, the spider may not index your page. One workaround for that ( that I seldom see used) is the noframes tag. this was designed to provide html for browsers that didnt support frames. Since most browsers in use today do support frames, many designers feel it is unnecessary to put anything in there - or they put in the condescending "your browser doesnt support frames". What I recommend is to fill it with some accurate and meaningful html text - knowing that most users wont see it but the spider will. As long as it is relevant to the page content, it would not be spam IMHO.

_____________________________

Dan

(in reply to DLMST)
Swirl

 

Posts: 2708
From: Cincinnati, Ohio USA
Status: offline

 
RE: Frames and photo gallery - 8/24/2004 11:11:36   
What version of FP are you using? FP2002 has a gallery layout (slideshow) that has thumbnails at the top with the larger picture below. As you click on the thumbnails, the large picture changes.

Swirl

_____________________________

Knowledge speaks, but wisdom listens.
-- Jimi Hendrix

(in reply to DLMST)
Thomas Brunt

 

Posts: 6109
Joined: 6/6/1998
From: St. Matthews SC USA
Status: offline

 
RE: Frames and photo gallery - 8/24/2004 11:14:54   
A search engine spider gets to the frameset page and sees only the frameset code. The spider cannot jump from that frameset to any page on your site because it must follow hyperlinks to find pages.

It is possible to place hyperlinks inside a <noframes> tag within your frameset page. That will theoretically allow the spider to follow those hyperlinks to index specific pages with text and alt tags for images.

If the search engine does follow those noframes hyperlinks, it will index the pages outside of the frameset. That's what the searcher will see (just that page -- not the frameset.) This is true unless you place scripting on the page to force it back into a frameset.

Most people find that this route is more trouble than it's worth. That doesn't mean your situation doesn't warrent that kind of approach, however.

_____________________________

Expression Web Help
Frontpage Help
Dreamweaver Help


(in reply to DLMST)
DLMST

 

Posts: 81
Joined: 9/11/2002
Status: offline

 
RE: Frames and photo gallery - 8/24/2004 11:25:48   
Hi, what rapid replies!!! Thanks all!!!

It's FrontPage 2002. Their slideshow .... geez, I forgot all about that option!!! Is there a way to move the thumbs to the bottom of the "show"? Can I add a caption immediately under the enlarged photo view? Do search engines list all these "pages"? Do the main browsers read this option correctly?

Gosh, I must have left my brain in the other suitcase. Sorry! :) I can't believe I missed that option.

I am curious, though, about the "noframes tag". Where would that go (if I play with frames)? In the head of each frameset page? or in the head of the frameset index page?

DLMST

(in reply to Swirl)
Giomanach

 

Posts: 6090
Joined: 11/19/2003
From: England
Status: offline

 
RE: Frames and photo gallery - 8/24/2004 11:29:22   
Noframes? They would gp about here:

<frameset>
.......frame settings yada yada
</frameset>
<noframes>
Sorry You're browser does not support frames
</noframes>

Dan

_____________________________




(in reply to DLMST)
DLMST

 

Posts: 81
Joined: 9/11/2002
Status: offline

 
RE: Frames and photo gallery - 8/24/2004 11:38:43   
Hi, thank you!!

DLMST

(in reply to Giomanach)
dpf

 

Posts: 7121
Joined: 11/12/2003
From: India-napolis
Status: offline

 
RE: Frames and photo gallery - 8/24/2004 11:43:27   
quote:

The spider cannot jump from that frameset to any page on your site because it must follow hyperlinks to find pages.

I have to disagree there, Tom. AS the code below shows, the frame sections are indeed links which the spider could or may be programmed to follow. However, the absence of meaningful content on the index/frame page, they are often programmed to then abandon the site and move on. Even if they do go into a frame, it is only a portion of the intended page as so if it does get listed, it is incomplete - who wants that?

<frameset rows="100,*,20" framespacing="0" border="0" frameborder="no">
<frame name="menu" src="default.html" scrolling="no" frameborder="no" framespacing="0">
<frame name="main" src="giving.htm" scrolling="auto" frameborder="no" framespacing="0">
<frame name="bottom" src="bottom.htm" scrolling="no" frameborder="no" framespacing="0">
</frameset>

_____________________________

Dan

(in reply to Thomas Brunt)
dpf

 

Posts: 7121
Joined: 11/12/2003
From: India-napolis
Status: offline

 
RE: Frames and photo gallery - 8/24/2004 11:45:58   
quote:

<noframes>
Sorry You're browser does not support frames
</noframes>

Dan

what I referred to as condescending..... If your visitor uses a browser that does not support frames, is that all you want to say? just buzz off? isnt it worth your while to write some html to deliver the message? with all the talk about making the web accessible to handicapped, isnt the spirit of that "available to all"? I dont want to punish or brush off visitors who dont have the browser that I think they should have.

_____________________________

Dan

(in reply to Giomanach)
Thomas Brunt

 

Posts: 6109
Joined: 6/6/1998
From: St. Matthews SC USA
Status: offline

 
RE: Frames and photo gallery - 8/24/2004 12:04:37   
dpf

Sorry if my information is not correct. I have been told more than once that spiders do not follow scr attributes in frame tags. You you sure about that?

I can't think of a reason why a search engine would think a spider should do indexing that way. It would mean displaying lots of pages outside of their intended framesets.

_____________________________

Expression Web Help
Frontpage Help
Dreamweaver Help


(in reply to DLMST)
dpf

 

Posts: 7121
Joined: 11/12/2003
From: India-napolis
Status: offline

 
RE: Frames and photo gallery - 8/24/2004 12:14:19   
quote:

Sorry if my information is not correct. I have been told more than once that spiders do not follow scr attributes in frame tags. You you sure about that?

actually, Tom, I was splitting hairs - a little - a spider "could" follow the link - are they programmed to do so? I'm not sure but I have seen a few partial frame pages indexed - can't be sure how they got there - ugly when they are listed..lol

_____________________________

Dan

(in reply to Thomas Brunt)
Thomas Brunt

 

Posts: 6109
Joined: 6/6/1998
From: St. Matthews SC USA
Status: offline

 
RE: Frames and photo gallery - 8/24/2004 12:22:45   
My guess is that they were indexed by some accident -- maybe the no frames trick, but I would be suprized.

The no frames tag trick came into vogue about 5 years ago. You could load up a frameset page with all kinds of key words, phrases, links, even image tags with keywords in the alt attributes. No visitor would see it, but the spiders would back then.

A collegue of mine at my previous employer had great success with it. I have no idea if it still works.

_____________________________

Expression Web Help
Frontpage Help
Dreamweaver Help


(in reply to dpf)
DLMST

 

Posts: 81
Joined: 9/11/2002
Status: offline

 
RE: Frames and photo gallery - 8/24/2004 15:09:13   
Ok folks, you just lost me. What does the dialogue re: frames mean? :) You inadvertently rattled my noggin.

Cheers,
DLMST

(in reply to Thomas Brunt)
dpf

 

Posts: 7121
Joined: 11/12/2003
From: India-napolis
Status: offline

 
RE: Frames and photo gallery - 8/24/2004 16:05:31   
quote:

What does the dialogue re: frames mean?

well, you asked the question - we tried to answer. I'm not sure what you dont understand.

_____________________________

Dan

(in reply to DLMST)
DLMST

 

Posts: 81
Joined: 9/11/2002
Status: offline

 
RE: Frames and photo gallery - 8/24/2004 16:13:50   
Hi, the part I didn't understand was the discussion that followed regarding whether or not a "spider" could or could not follow the "links" (attributes in frame tags?). I don't have a firm grasp of "frames". Sorry.

DLMST

(in reply to dpf)
dpf

 

Posts: 7121
Joined: 11/12/2003
From: India-napolis
Status: offline

 
RE: Frames and photo gallery - 8/24/2004 16:18:45   
frames are very tricky - unfun - if yo udon't have a firm grasp, I would suggest you avoid them until/unless you have time to do some reading and really understand them.. what abouts shirleys suggestion above?

_____________________________

Dan

(in reply to DLMST)
DLMST

 

Posts: 81
Joined: 9/11/2002
Status: offline

 
RE: Frames and photo gallery - 8/24/2004 16:30:18   
I didn't realize Frames was so complicated. The option provided in Photoshop Elements 2 made it look simple. It appears it is not so simple once you want to start customizing it esthetically and also to customize it to work more smoothly for all.

Yep, I think I may go with the FrontPage 2002 slideshow option instead. I'm running a Javascript for my pull down menu at the top of the pages. This FP option shouldn't conflict with that code right? (I read that it's difficult to get two scripts to run on the same page.) I'll give it a test run and see what happens.

Thanks,
DLMST

(in reply to dpf)
DLMST

 

Posts: 81
Joined: 9/11/2002
Status: offline

 
RE: Frames and photo gallery - 9/1/2004 14:47:27   
Now I remember why I didn't use FrontPage slideshow when I created my site. It doesn't seem to work correctly in other browsers than IE. I searched this forum and found that I had asked about this quite a while ago (sorry) and was told it had proprietary features. Duh, I can't believe I had forgotten about that.

The other option, using Frames (PE2 feature) does seem more complicated to me to customize and integrate into my current web pages. So, I again looked into various JAVA scripts but couldn't find one that fit my needs. Then I did another search here at this forum and found a mention of JAlbum and WebAlbum. What do you think? Do these integrate well with FrontPage and work well across different browsers? Any complications?

Thanks again for your help.

(in reply to DLMST)
caz

 

Posts: 3516
Joined: 10/10/2001
From: Somewhere south of Chester, UK
Status: offline

 
RE: Frames and photo gallery - 9/2/2004 14:58:00   
When I was looking for a gallery option that was standards compliant and didn't use javascript I found
Web Album and so far I am pleased with it. Using CSS you can style it to fit your site more closely, but as it comes out of the box I find it very pleasing and easy to use. I didn't find any problems with FP either.

You can see it in action here at a site that is in the very early stages of building; I have not yet customised the gallery navigation.

HTH
Carol

_____________________________

Do not meddle in the affairs of cats, for they are subtle and will dance, or more on your keyboard.
Cheshire cat. www.doracat.co.uk

I remember when it took less than 4hrs to fly across the Atlantic.

(in reply to DLMST)
DLMST

 

Posts: 81
Joined: 9/11/2002
Status: offline

 
RE: Frames and photo gallery - 9/2/2004 15:13:14   
Hi, your tables are beautiful!! :)

Do you happen to know if a link "to order click here" can be added as a text line underneath each enlarged image in Web Album Generator? (That link would be specific to that image.)

(in reply to caz)
caz

 

Posts: 3516
Joined: 10/10/2001
From: Somewhere south of Chester, UK
Status: offline

 
RE: Frames and photo gallery - 9/3/2004 6:33:34   
Thanks for the compliment, but I didn't make the tables - marquetry is beyond me. :)

You can add any link you want to the individual photo pages; index,previous and next are standard - I usually add a home page link to get back to the main files. It is just straight html with an external stylesheet, so easy to customise and best of all it is free. There is also a support forum for further help when using it.
You can see another gallery at Concorde this is the first I did for testing.

The generosity of people on the web never ceases to amaze me.

Cheers
Carol

_____________________________

Do not meddle in the affairs of cats, for they are subtle and will dance, or more on your keyboard.
Cheshire cat. www.doracat.co.uk

I remember when it took less than 4hrs to fly across the Atlantic.

(in reply to DLMST)
Page:   [1]

All Forums >> Web Development >> Microsoft FrontPage Help >> Frames and photo gallery
Page: [1]
Jump to: 1





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts