Hello
My Enligh ablility is very poor. sorry
I think so many person discuss about font size..
But I can't find..
now FCKeditor, I try to change font size FCKeditor make tag like "<font size="0 or 1 or...."
but I want to change <font style="font-size: 00px"
how can I do?
plz help me
My Enligh ablility is very poor. sorry
I think so many person discuss about font size..
But I can't find..
now FCKeditor, I try to change font size FCKeditor make tag like "<font size="0 or 1 or...."
but I want to change <font style="font-size: 00px"
how can I do?
plz help me
RE: I wan to change font size (not font size=3 ta
I solved my problem.
but When I use webeditor made by activeX,
I overide font size, just set one time
ex )
sample text => I set font size many times partially
just last setting is effected
but I try to fckeditor
It make so many tag like this,
<span blah><span blah>text</span>...
so many span....
why is it different?
thank you
RE: I wan to change font size (not font size=
<Style name="Font PX Size 8" element="span">
<Attribute name="style" value="font-size:8px;" />
</Style>
<Style name="Font PX Size 9" element="span">
<Attribute name="style" value="font-size:9px;" />
</Style>
<Style name="Font PX Size 10" element="span">
<Attribute name="style" value="font-size:10px;" />
</Style>
Then use the Style selector in the editor to choose the font size instead of the Font Size selector.
I hope this helps some people, as I spent some time to come up with this solution to this problem.
RE: I wan to change font size (not font size=
You really help me. I solved my problem with :
<Style name="10" element="font">
<Attribute name="size" value="10" />
</Style>
<Style name="14" element="font">
<Attribute name="size" value="14" />
</Style>
<Style name="15" element="font">
<Attribute name="size" value="15" />
</Style>
Best regards