Connecting Tech Pros Worldwide Forums | Help | Site Map

nice-lookimg select box

Dominik
Guest
 
Posts: n/a
#1: Jul 23 '05
I'm looking for some nice-looking DHTML select boxes (combo boxes). Someone
knows where can I find it?



Michael Winter
Guest
 
Posts: n/a
#2: Jul 23 '05

re: nice-lookimg select box


On Tue, 4 May 2004 17:46:33 +0200, Dominik <dobi@plusnet.pl> wrote:
[color=blue]
> I'm looking for some nice-looking DHTML select boxes (combo boxes).[/color]

What exactly is a nice-looking select box? What do you need to change?
What do you hope to achieve by changing them?

Mike

--
Michael Winter
M.Winter@blueyonder.co.invalid (replace ".invalid" with ".uk" to reply)
Dominik
Guest
 
Posts: n/a
#3: Jul 23 '05

re: nice-lookimg select box


> What exactly is a nice-looking select box? What do you need to change?[color=blue]
> What do you hope to achieve by changing them?[/color]

it has to very slick.... with some slide layer goin' up and down (two arrows
on left or right side)


Shawn Milo
Guest
 
Posts: n/a
#4: Jul 23 '05

re: nice-lookimg select box


Have you tried CSS?

Here is a very simple example, but you can
do all kinds of things with it.

<style type="text/css">

select{
font-size: 14pt;
background: yellow;
color: black;
}

</style>

<select id="drpTest">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>




Shawn
Thomas 'PointedEars' Lahn
Guest
 
Posts: n/a
#5: Jul 23 '05

re: nice-lookimg select box


Shawn Milo wrote:
[color=blue]
> <style type="text/css">
>
> select{
> font-size: 14pt;[/color]

If for a screen stylesheet (common), never ever use "pt" for font size.
This is a unit dependent on the font resolution and thus results in
different font sizes on different systems by default. Use "px" or "em",
while "px" has the disadvantage of being not supported by the font scaling
feature of the IE browser component due to a bug (other UAs have no problem
with it). The 100% font resolution on MS Windows is 96ppi, so if you are
developing there with that resolution, multiply the "pt" value with 1.33
(and round it) to get the respective "px" value (e.g. 14pt =~ 19px).


X-Post & F'up2 comp.infosystems.www.authoring.stylesheets

PointedEars
Closed Thread