Intense-Dakota Posted July 27, 2011 Share Posted July 27, 2011 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 More sharing options...
bellini13 Posted July 27, 2011 Share Posted July 27, 2011 your theme should have a file called order-carrier.tpl, you would likely need to edit this. Link to comment Share on other sites More sharing options...
Intense-Dakota Posted July 27, 2011 Author Share Posted July 27, 2011 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 More sharing options...
bellini13 Posted July 28, 2011 Share Posted July 28, 2011 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 More sharing options...
Recommended Posts