Editor - TinyMCE in the template color font

Amazing responsive, mobile ready VirtueMart e-commerce Joomla template
Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Fri Nov 22, 2013 2:31 am
Reply with quote
Report this post
¿why the color in the font not work, when I change the editor TinyMCE?


http://salvaescaleras.cl/v2/index.php/s ... portatiles

Code: Select all
<p><span style="color: #00adef;"><strong><span style="font-size: x-large;">Salvaescaleras portátil  modelo "Stair-Trac"</span></strong></span></p>
User avatar
Platinum Boarder

GK User
Fri Nov 22, 2013 7:08 am
Reply with quote
Report this post
Hi,
it's quite easy, because we added color value for <strong> and <b> in our CSS file.
Take a look:

Code: Select all
b, strong {
    color: #33353A;
    font-weight: 400; }


Now you see. In your case to get color you have to change order of color <span> it must be inside <strong> not outside. That's all.

Code: Select all
<p><strong><span style="color: #00adef;"><span style="font-size: x-large;">Salvaescaleras portátil  modelo "Stair-Trac"</span></span></strong></p>
User avatar
Platinum Boarder

GK User
Fri Nov 22, 2013 7:10 am
Reply with quote
Report this post
Second solution,
from line ~~139: templates/gk_bikestore/css/normalize.css

delete color tag
from
Code: Select all
b, strong {
   color: #33353A;
    font-weight: 400; }

to
Code: Select all
b, strong {
    font-weight: 400; }
User avatar
Platinum Boarder

GK User
Fri Nov 22, 2013 7:14 am
Reply with quote
Report this post
p.s.
By the way, we suggest to use different more modern Editor than TinyMce - for example: JCE or JCK Editor.
User avatar
Platinum Boarder

GK User
Mon Nov 25, 2013 8:34 pm
Reply with quote
Report this post
no work "JCE or JCK Editor"
User avatar
Platinum Boarder

GK User
Mon Nov 25, 2013 11:03 pm
Reply with quote
Report this post
Probably because color is still overridden ...
Did you changed order in HTML mode as I show you in my post ?

... show me where exactly and I will check why is not working for you. Because this is very strange...
User avatar
Platinum Boarder

GK User
Mon Nov 25, 2013 11:10 pm
Reply with quote
Report this post
I saw that you are able to change color, for example here,
color--2.png


So probably, you are doing something wrong in different areas.
User avatar
Platinum Boarder

GK User
Mon Nov 25, 2013 11:12 pm
Reply with quote
Report this post
p.s.
We always suggest to use headers <h2>, <h3>, <h4> not old school font-size: x-large; property.
User avatar
Platinum Boarder


cron