Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/O Code)
 Vertical content?

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!
Before posting, make sure you have read this topic!

Screensize:
UserName:
Password:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkInsert EmailInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
   

T O P I C    R E V I E W
Etymon Posted - 30 October 2007 : 11:40:40
My searches have not yielded the results I am looking for.

I want to split a subject line to read vertically instead of horizontally.

Does anyone know how to do this?

Thanks all!

Etymon
<
7   L A T E S T    R E P L I E S    (Newest First)
Etymon Posted - 31 October 2007 : 12:28:59
quote:
Originally posted by cripto9t

Glad I could help . I use it in a table cell that spans multiple rows, so...
<td style="text-align;center" rowspan="10">

...centers it just fine. I think I added the spaces to make the cell wider.



Ah! That makes sense then.

My table data was only about 25 pixels wide.<
cripto9t Posted - 31 October 2007 : 11:22:48
Glad I could help . I use it in a table cell that spans multiple rows, so...
<td style="text-align;center" rowspan="10">

...centers it just fine. I think I added the spaces to make the cell wider.<
Etymon Posted - 31 October 2007 : 08:27:21
Thanks Shaggy! I was able to do that for static text, but I also needed the vertical text to work with variables.

Thanks cripto9t! That's cleaner than what I came up with! My version does same thing, but yours is much quieter.

The following made the characters align straighter for my needs:


'#### BEGIN Vertical Text MOD by cripto9t ####'
Dim strToVert       'Text to turn vertical
Dim iCnt            'Count the letters
Dim strVert         'Resulting vertical text
Dim i               'The counter

strToVert = "Vertical"
iCnt = Len(strToVert)
strVert = ""
for i = 1 to iCnt
        strVert = strVert & Mid(strToVert,i,1)
        if i < iCnt then strVert = strVert & "<br />"
next

Response.Write strVert
'#### END Vertical Text MOD by cripto9t ####'

<
cripto9t Posted - 31 October 2007 : 08:04:50
i use this in a numbers pool script I have. I changed the variable names to make it a little more clear.
Dim strToVert       'Text to turn vertical
Dim iCnt            'Count the letters
Dim strVert         'Resulting vertical text
Dim i               ' The counter

strToVert = "Vertical"
iCnt = Len(strToVert)
strVert = ""
for i = 1 to iCnt
        strVert = strVert & " " & Mid(strToVert,i,1) & " "
        if i < iCnt then strVert = strVert & "<br />"
next

Response.Write strVert


<edit> Removed some unneccesary breaks<
Shaggy Posted - 31 October 2007 : 07:39:55
Can you not just add a line break after each character?

<
Etymon Posted - 31 October 2007 : 07:14:49
quote:
Originally posted by JJenson

Something like this?

http://www.ssi-developer.net/css/vertical-text.shtml



Thanks for the reply, Jeff.

That's along the lines of what I wanted, except I was looking for this:

V
e
r
t
i
c
a
l


Here's an additional reference that goes into great detail about the possible future of that aspect of CSS (http://fantasai.inkedblade.net/style/discuss/vertical-text)

<
JJenson Posted - 30 October 2007 : 12:48:56
Something like this?

http://www.ssi-developer.net/css/vertical-text.shtml<

Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.02 seconds. Powered By: Snitz Forums 2000 Version 3.4.07