--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.
/*TABLES BASIC*/
table th, table td {padding: 0 0 0 0;border: 1px solid black;}
table th {padding: 10px; vertical-align:top; background-color:#ddd;font-weight:normal;text-align:left;}
table td {padding: 10px; vertical-align:top; background-color:#fff;}
Therefore all your table cells have a white background and one
cannot see the row background. The fix to this is to add a
transparent background to your table cells in .bluealtrows :And as always, you're just a minute faster than me.
/Andreas
--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscribe@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/tiddlywiki/1XCirmHuEs8/unsubscribe.
To unsubscribe from this group and all its topics, send an email to tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.
The problem is that you are targeting the `<tr>` element for the background colours. That works OK, but the `<td>` elements within the rows have their own background colours that lay over the top of the row colours. The fix is to include the `<td>` element:html body.tc-body .bluealtrows tr:nth-child(even) td {background-color:#CDF;}html body.tc-body .bluealtrows tr:nth-child(odd) td {background-color:#dae9fe;}