Hi
I can see colors works, only <strong></strong> does not since they have predefined color. Try addign this to override.css:
- Code: Select all
b, strong {
color: inherit;
}
or use html code more precisely. It should be:
- Code: Select all
<span>
<strong style="text-decoration: underline; color: #ff0000;">ASROCK Z270 Extreme 4 Anakartın Teknik Özellikleri;</strong>
</span>
instead of:
- Code: Select all
<span style="text-decoration: underline; color: #ff0000;">
<strong>ASROCK Z270 Extreme 4 Anakartın Teknik Özellikleri;</strong>
</span>
You have there now.