I've got this line of code:
{:content => product.description.capitalize, :inline_format => true}
I would like to change the font color. I've tried:
{:content => product.description.capitalize, :color => :red, :inline_format => true}
and:
{:content => product.description.capitalize, :font_color => :red, :inline_format => true}
But these don't work. How can I do that?
Try with 'text_color' ,