Wade wrote:

> Anyone point me to a really good tutorial on frames?

frames are obsolete as of 1999 and i would not recommend using them anymore.


What you want to do is use CSS.

<div id="scroller">
        all your scrolling text here
</div>



and in your style sheet:

#scroller {
        position: relative;
        width: 90%;
        height: 200px;
        overflow: scroll;
}



there you have a scroller.  :)





Community email addresses:
  Post message: [email protected]
  Subscribe:    [EMAIL PROTECTED]
  Unsubscribe:  [EMAIL PROTECTED]
  List owner:   [EMAIL PROTECTED]

Shortcut URL to this page:
  http://groups.yahoo.com/group/php-list 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/php-list/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to