2015-06-11 35 views
0

我有這行代碼:字體顏色:內容對蝦

{:content => product.description.capitalize, :inline_format => true} 

我想更改字體顏色。我已經試過:

{:content => product.description.capitalize, :color => :red, :inline_format => true} 

和:

{:content => product.description.capitalize, :font_color => :red, :inline_format => true} 

但這些不工作。我怎樣才能做到這一點?

回答

1

與 'text_color' 嘗試,

{:content => product.description.capitalize, :text_color => "#ff0000", :inline_format => true} 
+0

@Jakub好的,謝謝 – rick

+0

感謝。我知道了。我用標籤 Jakub