|
Posted by Adrienne Boswell on May 31, 2008, 2:27 pm
Please log in for more thread options
in news:3bb1d0bd-89b5-452b-b024-3c2026d34cc7
@d45g2000hsc.googlegroups.com:
> Hi,
>
> Our company has unfortunetely choosen to have a flash on the frontpage
> that links into the site. Now I understand that this means the search
> engine crawling mechanism will not be able to access the site and
> crawl it because of the flash containing the links.
>
> Could we get around the problem by having a div containing the same
> links that the flash has, with display blok set to none so the content
> of the div is not displayed to the user, but search engines should be
> able to pick the links up from the div and crawl the site ?
>
> Is this legal so to speak. don't want end up suggesting something that
> will get the site banned :-).
>
> Any hints will be greatly appreciated.
>
> Regards
> Saya
>
What you really want to do is look up flash satay. Using the OBJECT
element, you can nest content that is not accessible to users without
flash, eg:
<object>
<img src="static image">
<ul>
<li><a href="links">Links</a></li>
</ul>
</object>
You will have to look up the relavent markup to do this.
You do not want to set an element to display none because it will not be
accessible either. IMHO display none should only be used for printing,
eg.
@media print{
div#menu
}
--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info Please respond to the group so others can share
|