I'm using IE 8 as the platform that our userbase has. This is my default.ctp:
http://bin.cakephp.org/view/1448707874 This is my CSS: http://bin.cakephp.org/view/361163608 The issue that I'm encountering is that I'm trying to display a table with alternating colors for the rows... and it doesn't work. I'll post more code if needed, but figured that this would set this up for all tables (this is just one app, with one large table): 1. table tr td { 2. background: #f0f0f0; 3. padding: 6px; 4. text-align: left; 5. vertical-align: top; 6. border-bottom:1px solid #ddd; 7. } 8. table tr:nth-child(2n) td { 9. background: #f5f5f5; 10. } 11. table .altrow td { 12. background: #f5f5f5; 13. } -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
