Trying to post a table and it has a ton of dead space at the beginning. What is the trick to get it to show properly?
X
08-30-04, 07:18 PM
Take out all the line
feeds between the HTML.
Quake1028
08-30-04, 07:41 PM
Isn't there a shortcut way to replace the spaces or something?
Adam Tyner
08-30-04, 08:14 PM
Copy and paste the text into Microsoft Word
Use the "Replace" (CTRL+H) feature to convert:
^p
to nothing, and that should put it all on one line.
twikoff
08-31-04, 07:06 AM
Originally posted by Quake1028
Isn't there a shortcut way to replace the spaces or something?
didnt I teach you this a long time ago
and you had it figured out and was doing it fine?
its just the replace ^p as mentioned above
gotta remove paragraph makes because vbulletin doesnt like those spaces in the code
Quake1028
08-31-04, 01:03 PM
Originally posted by twikoff
didnt I teach you this a long time ago
and you had it figured out and was doing it fine?
its just the replace ^p as mentioned above
gotta remove paragraph makes because vbulletin doesnt like those spaces in the code
Yeah, but the key is a long time ago ;). Actually, you just did it for me I think. I only have notepad, and it's not working.
Adam Tyner
08-31-04, 01:15 PM
You can't auto-replace that character in Notepad. You need to go line-by-line and remove the extra line breaks.
Quake1028
08-31-04, 01:22 PM
Can you do it in wordpad? And what exactly do you mean by linebreaks? <*p>?
Adam Tyner
08-31-04, 01:31 PM
Not to my knowledge.
By "line break", I mean what separates
this
word
from
this
word
Your table needs to be on one line, like:
<table border="0" cellspacing="1" cellpadding="1"><tr><td>hello</td><td>this is a sample table I'm making up for Quake</td></tr><tr><td colspan="2">to show a point, I guess</td></tr></table>
twikoff
09-01-04, 07:57 AM
yep, everytime enter is hit, it creates a paragraph mark
then you get gaps in the code.. and that drives vbulletin nuts