I am running Dolphin 7 with the Orca Forum. Does anyone know how to make the rows inside the topics alternate in color, so that they are easier to read? The Orca Forum here alternates row color, however out of the box it does not. Any ideas?
I am running Dolphin 7 with the Orca Forum. Does anyone know how to make the rows inside the topics alternate in color, so that they are easier to read? The Orca Forum here alternates row color, however out of the box it does not. Any ideas? |
The Orca forum here does not alternate background colors. My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
I am seeing that it is a white background. And then another reply gets a Yellow background. I cant see how it would look different on your computer???.. |
hehehe.. I knew that was coming. Ours is different because we have a higher membership level. Nothing to see here |
OK That makes sense. Thanks. Now to rephrase the question. Can anyone point me in the right direction to achieve this? Im more of a PHP guy and the Orca part seems to be more of an XSL script. |
Try adding this to /modules/boonex/forum/layout/base_en/css/main.css My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
Thanks for the help. The CSS you provided effected all of the table rows on the page. I was able to add on the CSS id of the actual table we are looking to shade to isolate this CSS change only to that table. Code that works for this application is below, Simply change CCC to the color you want your shade to be. .forum_table_list tr:nth-child(even) {background: #transparent} |
Yeah.. figured that would happen. To refine it a little more, the borders for the darker shaded row should be changed to a darker color than the white rows. My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |