For some reason the select rails tag results in a very ugly grey select box. I've been looking around for a way to change this, I'm guessing some sort of default CSS is generated for select boxes by rails but since I have deleted the default stylesheet that rails builds I have no idea where these settings would be set from.

How can I change this ugly default style?

What is the default CSS for a select (outside of ruby)?

EDIT: Turns out the problem is that I"m running it on VirtualBox Linux and the default select box there is the problem.

link|improve this question

1  
You don't need to put "Ruby on Rails (3)" in the title. Please use the ruby-on-rails-3 tag for this instead. – Ryan Bigg Jan 18 '11 at 7:22
feedback

3 Answers

up vote 1 down vote accepted

It's probably the browser default?

Adding select { } to your stylesheet and then customizing it with your own rules will cover all the tags without adding a class to every select box you create. Not that that's a bad idea.

link|improve this answer
Close it was the operating system... – Nayish Jan 18 '11 at 4:02
Good to know :-) – JustinM Jan 18 '11 at 4:03
feedback

Perhaps you should just override select in one of your CSS files?

css: .select { … }

view: <%= select(…, :class => "whatever") %>

Take a look in /railsproject/public/stylesheets.

link|improve this answer
Checked there, only my css is there. I don't want to add a class to everyone of my select boxes so that not a good solution. I would anyways like to know where the new style is declared. – Nayish Jan 18 '11 at 2:55
Then make .select {…} in your CSS, overriding all of them, which negates the need to do :class => "whatever". – jschorr Jan 18 '11 at 16:43
feedback

It's dependent on your operating system, and CSS gives you very little control of how it looks. If you are using jQuery, you could use a plugin such as this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.