[tw] Re: Format cells in a table

2010-02-12 Thread AndrewMc
Thanks Mike for the information about StyleSheetShortcuts. I already use this tiddler but did not have the latest version that included the ColorPalette colours. When using this approach in table cells, the text background is formatted correctly, but not the entire background of the cell. This can

[tw] Re: Format cells in a table

2010-02-12 Thread Mike
Originally you had mentioned using ColorPalette colors in your table. Might want to look at: http://www.tiddlytools.com/#StyleSheetShortcuts At the End you will find (did not include all of the code. . .) /* [[ColorPalette]] text colors */ .Background { color:[[ColorPalette::Background]];

[tw] Re: Format cells in a table

2010-02-12 Thread whatever
Using CSS, you can define classes. Then for the cells that need a different look, you simply specify the class. td {background: yellow;} td.custom {background: pink;} cell1 cell2 cell3 In this case, the first and the third cell will be yellow and the second pink. Or you can directly spec

[tw] Re: Format cells in a table

2010-02-11 Thread AndrewMc
Thanks for the suggestion. I will try installing and using Firebug. However, I am not sure that knowing the actual CSS will help me. If I add the CSS to StyleSheet and create a custom style, I can only apply that style to the whole table, I believe. What I want to do is affect the appearance of jus