Kaiser
July 13, 2003, 1:32am
1
Making text a lot smaller
being able to divide it into multiple colums
The “scrolling” sig that Xelo showed us just prior to The Great Deletion Mark Two.
If anybody wants to share the coding with me, for any of these things, I’d really appreciate it.
Rhaka
July 13, 2003, 4:15am
2
<img src=“http://www.rpgclassics.com/staff/tenchimaru/td.gif ”> < FONT size =“1”>
To divide the text, put it in a table.
< center>
< table>
< tr>
< td>< center>text 1< /center>< /td>
< tr>
< td>< center>text 2< /center>< /td>
< /table>
< /center>
Don’t know the scrolling code.
<div style=“width:100%; height:150px; overflow:auto; border:0”>
Originally posted by KaiserVonAlmasy
The “scrolling” sig that Xelo showed us just prior to The Great Deletion Mark Two.
What, you mean this beautiful little composition of HTML I’ve brought up many many times?
<div style=“width:100%; height:150px; overflow:auto; border:0”>
TEXT HERE
</div>
</DIV>
Oh, and TD, Don’t EVER FUCKING USE <center>. It’s an IE-Only tag. No other major browsers support it. It’s just as easy to use
<table align="center">
<tr>
<td align="center">text 1</td>
<td align="center">text 2</td>
</tr>
</table>
Rhaka
July 13, 2003, 2:27pm
6
<img src=“http://www.rpgclassics.com/staff/tenchimaru/td.gif ”> Well, that sucks. Since I’ve used < center> for most of my sitework.
Guh. Is there some option that turns HTML off? Since none of those bits of code work for me.