mlapl1
Posts: 66
|
| Posted: 02/03/2008, 1:34 AM |
|
Hello and sorry for what may be a simple question but I do not seem able to find a solution.
I have been doing some work using the latest version of CodeCharge Studio (3.2.0.4).
I would like to change the font size, color etc of text in a listbox. I cannot find a way of doing this. I can easily change labels etc...
I do not know if this problem also applies to other things like checkboxes. At the moment, my label text is one size and my listbox text is another - not very pretty.
I am sure there is a solution and I am probably blind to it. I would appreciate some help.
Thank you
Andrew
|
 |
 |
kevind
Posts: 251
|
| Posted: 02/06/2008, 3:03 AM |
|
try setting the font size as a style for the listbox object.
click on the listbox and in the properties pane, set style to font-size:10pt; or whatever size you are looking for.
kd
_________________
thanks
Kevin
======================
CCS 3.2.x / ASP / MS Access /mySQL / PHP / jQuery / jQuery UI / jQuery Mobile
|
 |
 |
wkempees
|
| Posted: 02/06/2008, 3:28 AM |
|
Although this is not the exact answer it is a good pointer. http://forums.codecharge.com/posts.php?post_id=86377&s_keyword=width100
Walter
"kevind" <kevind@forum.codecharge> schreef in bericht
news:247a9940669a86@news.codecharge.com...
> try setting the font size as a style for the listbox object.
>
> click on the listbox and in the properties pane, set style to
> font-size:10pt; or whatever size you are looking for.
>
> kd
> _________________
> ======================
> CCS 2.3.x / ASP / MS Access
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.yessoftware.com/
>
|
|
|
 |
mlapl1
Posts: 66
|
| Posted: 02/09/2008, 12:56 AM |
|
Thank you both for your answers. I appreciate them and will try them out.
Andrew
|
 |
 |
feha
Posts: 712
|
| Posted: 02/09/2008, 3:30 PM |
|
Hi
to get formated all select listboxes add this to your css file
select {
font-size:11px; /* or whateversize */
}
note: no dot or anything in front of select ....
you can do same with input, textarea etc ...
instead of putting inline style to each listbox ...
hope this helps
example
textarea, input, select { font-size: 11px }
this will change the font-size on input, textarea and select ...
_________________
Regards
feha
www.vision.to
feedpixel.com |
 |
 |