Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Computer Forums > Programmers Lounge > Programming Discussions » Help me with my signature please!
Closed Thread
Old 12-20-2004, 06:32 PM   #1 (permalink)
 
Ultra Techie

Join Date: Dec 2004

Location: New Brunswick, Canada

Posts: 511

LegendBreath

Send a message via MSN to LegendBreath
Default Help me with my signature please!

Someone can help me with my signature?

It got too much space between the start and the table.

Heres the code:

PHP Code:
<table width=100height=1>
<
tr>
<
td>
<
font face=arial size=1>
MotherboardESC L7VTA
Processor
AMD Duron 850MHz
Video Card
S3 Trio 32/64
Memory
Generic 128MB DDR 2100
Sound Card
Sound Blaster Live!
Hard DriveMaxtor IDE 10GB
CD
-ROMPionner 32x DVD Slot Load
</font>
</
td>
<
td>
<
font face=arial size=1>
Motherboard: ??
Processor:  intel Pentium 
Video Card
ATI Rage 1MB
Memory
Generic 16MB SIMMs
Sound Card
Crystal CS4232
Hard Drive
Seagate IDE 410MB
lol crappy computers eh
?
</
font>
</
td>
</
tr>
</
table

__________________
LegendBreath is offline  
Old 12-21-2004, 09:09 PM   #2 (permalink)
 
Ultra Techie

Join Date: Sep 2003

Location: Bamberg, Germany

Posts: 549

Iron_Cross

Send a message via ICQ to Iron_Cross Send a message via MSN to Iron_Cross Send a message via Yahoo to Iron_Cross
Default

if that's the only thing in your sig, then it might just be a problem with board interpreting the code in your sig.
__________________

See today\'s Penny-Arcade!(May contain foul lanuage)
Pain is weakness leaving the body.

PM Me for my MSN
Iron_Cross is offline  
Old 12-29-2004, 07:57 AM   #3 (permalink)
 
Newb Techie

Join Date: Dec 2004

Posts: 2

subhash

Send a message via Yahoo to subhash
Default

use valign=top inside the td tag and hopefully ur problem solves
subhash is offline  
Old 12-29-2004, 08:07 AM   #4 (permalink)
TheMajor's Avatar
 
PowerQuest / Opera

Join Date: Jun 2004

Location: Netherlands

Posts: 10,101

TheMajor is on a distinguished road

Default

Remove all breaks and unneccesary spaces.
__________________
TheMajorMMX - Intel P200 MMX @ 225Mhz - V-Tech (PcPartner) Baby-AT mb w/ Intel Triton TX chipset - Nvidia Riva TNT2 M64 w/ 16MB - Still running.....
TheMajor is offline  
Old 12-29-2004, 08:16 AM   #5 (permalink)
 
Newb Techie

Join Date: Dec 2004

Posts: 2

subhash

Send a message via Yahoo to subhash
Default

if u see the code above then there is no extra spaces used, the spaces that u r seeing will not be rendered by the browser and to achive that as per formatting u will need to use
after every statement so ur final code may look like this :


<table width=100%>
<tr>
<td valign="top" align="left">
<font face=arial size=1>
Motherboard: ESC L7VTA

Processor: AMD Duron 850MHz

Video Card: S3 Trio 32/64

Memory: Generic 128MB DDR 2100

Sound Card: Sound Blaster Live!

Hard Drive: Maxtor IDE 10GB

CD-ROM: Pionner 32x DVD Slot Load
</font>
</td>
<td valign="top" align="left">

<font face=arial size=1>
Motherboard: ??

Processor: intel Pentium

Video Card: ATI Rage 1MB

Memory: Generic 16MB SIMMs

Sound Card: Crystal CS4232

Hard Drive: Seagate IDE 410MB

lol crappy computers eh?
</font>
</td>
</tr>
</table>

note : assuming here that u want both the columns to be left aligned incase u need to align the right hand to column to right then use <td valign="top" align="right"> for the second td

cheers !!
subhash is offline  
 
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On