Tables #2

User 562592 Photo


Registered User
2,038 posts

Every now and then I have to use tables for invoicing. I use the built in table maker, which is very nice. One problem, that is continuing to frustrate me is that when you choose a color option it does not carry back over to the html when you insert the table.

Example, If I am creating an invoice and the top column is red (for my categories) and the rest is white, when I go to insert it into my html document the color disappears.

Does anyone have any clue why? It probably should not be an option if it cannot be used in the table maker within the html editor.

I hope that made sense.
The philosopher has not done philosophy until he has acted upon the mere conviction of his idea; for proof of the theory is in the act, not the idea.

My Web Development Company: http://www.innovatewebdevelopment.com (Created with Coffee Cup Software).

My Personal Website: http://www.EricSEnglish.com

User 2000538 Photo


Registered User
1,392 posts

Might there be some CSS missing? I haven't used the table option so not sure how it works but sounds like the CSS part may have gone astray.
I know you believe you understand what you think I said...but I am not sure you realize that what you heard is not exactly what I meant.


User 562592 Photo


Registered User
2,038 posts

Something is missing, but I don't think that its CSS related because the attributes related to the table (when its placed in the html) are all listed within the <td> and <tr> tags. In other words, it doesn't generate any CSS.

If you do a random table insert with some color you'll see what I mean.

Thanks though. :D
The philosopher has not done philosophy until he has acted upon the mere conviction of his idea; for proof of the theory is in the act, not the idea.

My Web Development Company: http://www.innovatewebdevelopment.com (Created with Coffee Cup Software).

My Personal Website: http://www.EricSEnglish.com

User 2000538 Photo


Registered User
1,392 posts

okay...it looks like it just adds the color attribute to the html.

It seemed to work for me. This was my code:

<font size=2 color="#000000" face="Arial">
<div><table width="100%" border=5 cellpadding=5 bordercolor="#000000" cellspacing=10 bgcolor="#ff6600">
<tr valign=top>
<td bgcolor="#00ffff"><br />
</td>
<td bgcolor="#00ffff"><br />
</td>
<td bgcolor="#00ffff"><br />
</td>
<td bgcolor="#00ffff"><br />
</td>
</tr>
<tr valign=top>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
</tr>
<tr valign=top>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
</tr>
<tr valign=top>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
</tr>
<tr valign=top>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
</tr>
<tr valign=top>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
</tr>
<tr valign=top>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
</tr>
<tr valign=top>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
</tr>
<tr valign=top>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
</tr>
<tr valign=top>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
<td><br />
</td>
</tr>
</table>
</div>
</font>


and image attached
Attachments:
I know you believe you understand what you think I said...but I am not sure you realize that what you heard is not exactly what I meant.


User 562592 Photo


Registered User
2,038 posts

It must be a glitch in my program (or my brain). Thanks for looking into it, I will try it again.
The philosopher has not done philosophy until he has acted upon the mere conviction of his idea; for proof of the theory is in the act, not the idea.

My Web Development Company: http://www.innovatewebdevelopment.com (Created with Coffee Cup Software).

My Personal Website: http://www.EricSEnglish.com

User 2000538 Photo


Registered User
1,392 posts

Eric English wrote:
It must be a glitch in my program (or my brain). Thanks for looking into it, I will try it again.


Eric no I think it might have something to do with the doc type. I'm trying to do one now in another theme and having the same issue. Can't get the background colours or borders to show so I'm thinking that maybe a Strict doc type doesn't allow this?
I know you believe you understand what you think I said...but I am not sure you realize that what you heard is not exactly what I meant.


User 562592 Photo


Registered User
2,038 posts

Hmm. :/ Thats good information. :|
The philosopher has not done philosophy until he has acted upon the mere conviction of his idea; for proof of the theory is in the act, not the idea.

My Web Development Company: http://www.innovatewebdevelopment.com (Created with Coffee Cup Software).

My Personal Website: http://www.EricSEnglish.com

User 544680 Photo


Registered User
171 posts

A Strict doctype won't allow you to use deprecated properties such as bgcolor or font, etc. You'll need to use a Transitional doctype, if my thinking is correct.
User 562592 Photo


Registered User
2,038 posts

Good to know thanks Book.
The philosopher has not done philosophy until he has acted upon the mere conviction of his idea; for proof of the theory is in the act, not the idea.

My Web Development Company: http://www.innovatewebdevelopment.com (Created with Coffee Cup Software).

My Personal Website: http://www.EricSEnglish.com


Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.