How To Add Scrolling Text Box In Your Blogger
-
SCROLLING TEXT BOX
You may want to create a scrolling text box with code for your viewers to copy. Here is the way to do that. Copy the code below into Edit Html part of your Post Editor :
<textarea style="WIDTH: 332px; HEIGHT: 70px" onfocus="this.select();" name="textarea" cols="14">PUT CONTENT HERE</textarea>
Replace or adjust the width,height etc, with your content. The above code will create a box like this :
You can left click once inside the text box and the whole text will be selected.
-
TEXT AREA
To create a text area to mark out specific text use this code :
<textarea rows="10" cols="15">
YOUR TEXT HERE.....
</textarea>
This will look like the following :
- TEXT AREA WITH BACKGROUND COLOR
You can also add color ,font style,etc
<textarea rows="10" cols="40" style="background:#FFFF33;">YOUR TEXT HERE.....</textarea>
This will look like the following :
…………………………………………..END………………………………………………..
No comments: