I know this has got to be somewhere but I cannot find it. I would like to switch my Bold button so that it uses the strong tag instead of bold. Right now if I bold text it adds <B>text</B> and I just want a button that does <strong>text</strong>.
Thanks,
Andrew
PS >> Thanks for Safari. We work with a Safari shop and it's nice to be able to use this for them now!!!
Thanks,
Andrew
PS >> Thanks for Safari. We work with a Safari shop and it's nice to be able to use this for them now!!!
Re: Bold to Strong?
Thx
Re: Bold to Strong?
Flush your cache again, the CoreStyles take care of the generated output: http://wiki.fckeditor.net/Developer%27s ... ceStrongEm
Re: Bold to Strong?
Replace this line:
'Bold' : { Element : 'b', Overrides : 'strong' },
with:
'Bold' : { Element : 'strong' },
That worked for me
Re: Bold to Strong?
Generally it means that Element 'xyz' overrides 'foo' will replace 'xyz' with 'foo' everytime I use it? Does it work also, when I copy paste the source with 'xyz' tags?
Re: Bold to Strong?