how can i put this in a scrollbox without it actually proccesing the code?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ClassicVodka
    New Member
    • May 2007
    • 1

    how can i put this in a scrollbox without it actually proccesing the code?

    how do i put that in a scroll box with the actual code appearing?

    [html]
    <CENTER>
    <BIG>
    PLEASE SIGN THE
    PETITION AND
    PLEASE PASS IT ON
    TO OTHER PEOPLE.
    <a href="http://www.hrcactionce nter.org/campaign/millionformarri ageac">(CLICK HERE)SIGN THE MILLION FOR MARRIAGE PETITION (CLICK HERE) (US only)</A><br>

    [/HTML]
  • jhardman
    Recognized Expert Specialist
    • Jan 2007
    • 3405

    #2
    I assume you mean in a <textarea>,no t a scrolling marquee. The code is [html]<textarea rows="5" cols="100" editable="false ">Anything in this area will be displayed as written, not interpreted</textarea>[/html]
    The attributes are all optional. For example if you don't specify the size with rows="5" cols="100" a default size is displayed, if you don't specify whether the user can edit the text the default is that it is editable.

    Let me know if this helps.

    Jared

    Comment

    • TNT
      New Member
      • Feb 2007
      • 48

      #3
      Originally posted by ClassicVodka
      how do i put that in a scroll box with the actual code appearing?

      [html]
      <CENTER>
      <BIG>
      PLEASE SIGN THE
      PETITION AND
      PLEASE PASS IT ON
      TO OTHER PEOPLE.
      <a href="http://www.hrcactionce nter.org/campaign/millionformarri ageac">(CLICK HERE)SIGN THE MILLION FOR MARRIAGE PETITION (CLICK HERE) (US only)</A><br>

      [/HTML]
      You could use inline frames.
      Put [HTML]<iframe src="petition.h tml>
      </iframe>[/HTML] in the middle of the page.
      petition.html could contain: [HTML]
      <CENTER>
      <BIG>
      PLEASE SIGN THE
      PETITION AND
      PLEASE PASS IT ON
      TO OTHER PEOPLE.
      <a href="http://www.hrcactionce nter.org/campaign/millionformarri ageac">(CLICK HERE)SIGN THE MILLION FOR MARRIAGE PETITION (CLICK HERE) (US only)</A><br>[/HTML]

      Comment

      Working...