Xavier wrote: Hi pina,
I think it's probably due to your template which override the font-size property.
Try to change it in your template, or try this in the CSS-file:
span.hikashop_product_price{
color:#f84489;
white-space:nowrap;
font-size: 20px
}
Hi Xavier,
that's right, in my body tag om the template css, I have defined the font size. But also the font color. So I think it's strange that the color parameter overrides the one from the main template. But not the other parameters...
But now I changed the span class in the php-file to div class. Then I changed the css too to
.hikashop_product_price{
color:#f84489;
white-space:nowrap;
font-size: 20px;
}
and now it works
So: the span class does not overrige my template css, but the div class does. Do you know why?