Jump to content

Carrier block - alternating background color... I want it gone


Recommended Posts

Ok, I have spent days looking through every CSS and Java file I can find trying to figure out where to change the alternating background colors on the Carrier select module. My problem is that my text is dark gray, and so is every other row on the table. I would like to change it to a different color or even make all rows the same color if possible.

 

Thanks.

 

www.aacstudio.com

Link to comment
Share on other sites

Yeh, I looked through that file a few times thinking it was in there, but that only appears to have the code to add the carriers to the list, not change that color (that I can see at least). Thanks for the info, and if I am mistaking on this, please let me know.

Link to comment
Share on other sites

it should be this line... it is a style sheet class that is either "first_item", "last_item", "alternate_item" or "item".

 

<tr class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{/if} {if $smarty.foreach.myLoop.index % 2}alternate_item{else}item{/if}">

 

those styles are likely defined in the themes global.css file.

Link to comment
Share on other sites

×
×
  • Create New...