Iain wrote:
> All,
>
> I need to embed page at the top of my site that stays fixed, so when the
> user scrolls up & down the page the button(s) remain at the top of the
> page.
>
> Frames seems the way to go, butI've read some negative comments
> regarding using frames.
>
> Comments/suggestions welcome!
>
> TIA
> Iain
The drawback with using frames is that it's harder to link to the page.
Unless you add extra code in the frameset so that you can specify a page
in the query string, you can only link to the start page.
Search engines will tend to link to the content pages, where the
information is, rather than the frameset. People will land either on a
page without navigation, or on a page with only a few buttons that
doesn't work...
You can very easily accomplish something quite similar using css. For
example something like:
<div style="position:relative">
<div style="position:fixed;left:0;top:0;height:50px">
Buttons go here
</div>
<div style="margin-top:50px">
Content goes here
</div>
</div>
(The CSS would of course rather go in a style sheet than inline.)
--
Göran Andersson
_____
http://www.guffa.com