7 Replies - 2970 Views - Last Post: 18 June 2002 - 09:08 AM

#1 Fygar  Icon User is offline

  • I liek milk!!1
  • member icon

Reputation: 3
  • View blog
  • Posts: 4,358
  • Joined: 28-March 02

HTML Drop Down Alternatives

Posted 28 May 2002 - 07:07 AM

Ok, to start off, I reallly don't like HTML Drop Down menus... As far as I can tell, they cannot be changed using CSS Filters... What I want to do on a site I'm working on is make unused form objects semi-transparent, well every other Form object complies except for the drop down menus... perhaps there is a Javascript version of these? Thanks in advance...
Is This A Good Question/Topic? 0
  • +

Replies To: HTML Drop Down Alternatives

#2 fyrestorm  Icon User is offline

  • D.I.C Lover
  • member icon

Reputation: 10
  • View blog
  • Posts: 3,113
  • Joined: 04-April 02

Re: HTML Drop Down Alternatives

Posted 28 May 2002 - 09:03 AM

can we see what you're trying to do?
---------
the only thing i've ever been able to change in a dropdown box is the background color and the text color...
Was This Post Helpful? 0
  • +
  • -

#3 supersloth  Icon User is offline

  • serial frotteur - RUDEST MEMBER ON D.I.C.
  • member icon


Reputation: 3509
  • View blog
  • Posts: 27,644
  • Joined: 21-March 01

Re: HTML Drop Down Alternatives

Posted 28 May 2002 - 09:09 AM

do you mean like, the drop down menu's on dreamincode? that can be easily done if your looking for that.
Was This Post Helpful? 0
  • +
  • -

#4 Fygar  Icon User is offline

  • I liek milk!!1
  • member icon

Reputation: 3
  • View blog
  • Posts: 4,358
  • Joined: 28-March 02

Re: HTML Drop Down Alternatives

Posted 28 May 2002 - 11:05 AM

I'm talking about DDMenus Like the following:
<select class='transparent' size='1' name='DDUser'>
<option value='value'>value'</option>
...
</select>

They won't turn transparent unsing the following code in css:

.transparent
{
   filter: Alpha(Opacity: 30)
}

Was This Post Helpful? 0
  • +
  • -

#5 fyrestorm  Icon User is offline

  • D.I.C Lover
  • member icon

Reputation: 10
  • View blog
  • Posts: 3,113
  • Joined: 04-April 02

Re: HTML Drop Down Alternatives

Posted 28 May 2002 - 12:34 PM

just had to inquire, i didn't know that there was a transparent tag...
Was This Post Helpful? 0
  • +
  • -

#6 codeman  Icon User is offline

  • w3c fanatic

Reputation: 3
  • View blog
  • Posts: 1,190
  • Joined: 13-August 01

Re: HTML Drop Down Alternatives

Posted 28 May 2002 - 03:55 PM

Uhhh, there isn't a transparent tag. There is a transparent attribute like this:

&lt;img style="background: transparent;" alt="image" /&gt;

But if you are referring to the .transparent it's just the class that he is applying to the forms.

Yes, dropdown menus don't seem to respond much to styling. Just try changing the scrollbar color on those! It's almost immpossible!

Was This Post Helpful? 0
  • +
  • -

#7 Fygar  Icon User is offline

  • I liek milk!!1
  • member icon

Reputation: 3
  • View blog
  • Posts: 4,358
  • Joined: 28-March 02

Re: HTML Drop Down Alternatives

Posted 29 May 2002 - 06:29 AM

Yea, crazy buggers... I wish they where normal <input /> fields... Those respond to css changes and such... So yea, basically I was wondering if there was a Java version of the drop down menu... Doesn't seem like it though....
Was This Post Helpful? 0
  • +
  • -

#8 baz  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 1
  • Joined: 18-June 02

Re: HTML Drop Down Alternatives

Posted 18 June 2002 - 09:08 AM

Hi,
I know its been a long time since you posted this message, and you may have solved your problem already, but I was browsing through and thought I'd offer the following alternatives:
You could "disable" the form field using simple html by adding "disabled" into the tag:
<select name="" disabled>
    <option>Hello
    <option>Everyone
</select>


...or you could try the "custom select box" at Webfx, it behaves pretty much the same but you can add images and all kinds of stuff, and probably add some kind of transparency
http://www.webfx.eae...sGenerated.html

I hope this helps,

Baz
Was This Post Helpful? 0
  • +
  • -

Page 1 of 1