I have a set of buttons where i need to change the font size of few.
i used .ui-btn-text which leads to changes in all the button.. i need to change the font size of a specific few buttons. please help!! ?
thank you
I have a set of buttons where i need to change the font size of few.
i used .ui-btn-text which leads to changes in all the button.. i need to change the font size of a specific few buttons. please help!! ?
thank you
Hello! Could you post the CSS code you tried?
a.menuBtn.ui-btn-text
{
font-style:normal;
font-size: 12px;
}
Where menuBtn is the name of the class given to the button
Thank you
If you'll add class menuBtn for buttons you need you can use the following code:
codea.menuBtn .ui-btn-text
{
font-style:normal;
font-size: 12px;
} /code
thanks alot
Would this also apply to changing the text size of all the items in a list component on only one page? I tried to give it a class but it didn't seem to work.
Hi Jay,
Try this:precode.myclass .ui-li-heading{
font-size:25px;
}/code/pre