I would like to centralize the font size in combo box VISUALLY,
so that, if 100px's font size is applied, the combo box will not be affected.
any suggestion?
so that, if 100px's font size is applied, the combo box will not be affected.
any suggestion?
Re: How can I config the font sizes VISUALLY in the combobox
config.fontSize_style =
{
element : 'span',
styles : { 'font-size' : '#(14)' },
overrides : [ { element : 'font', attributes : { 'size' : null } }
]
};
it's really centralized the font size in drop down list,
but all font size doesn't work . . . and style and overrides attributes confuesed me a lot, as i have no idea what to pass to these field. . .