Hi,
no, sorry, row colors (if you mean background colors) can only be changed by CSS.
If your CSS is very long, you might want to consider placing it into a separate file instead of loading it inline (which the plugin currently does), and loading that file in your page head.
Regards,
Tobias
Thanks for quick response,
Now that is good alternative to load CSS separately. i was looking for it for quite a long time but i don’t know how to do it exactly may be you could help me.
Thanks
Hi,
basically, you only need to copy your “Custom CSS” into a new .css file, upload that to your server (e.g. into the theme folder) and then include that file with a HTML <link> command in the <head> part of your theme, which you can likely find in the header.php file of your theme. A similar (and actually better solution) would be to use the wp_enqueue_style() function with that new CSS file. That function call would have to go into your theme’s functions.php and it would do everything that is necessary for the inclusion. For more, I recommend the WP Codex page on that function.
Best wishes,
Tobias