VERY URGENT how to style a select tag

This is a discussion on "VERY URGENT how to style a select tag" within the Web Page Design section. This forum, and the thread "VERY URGENT how to style a select tag are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Dec 12th, 2007, 10:50
Junior Member
Join Date: Dec 2007
Location: auckland
Age: 33
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
VERY URGENT how to style a select tag

i am using a select tag and as per the property of a select tag it displays the border on the top, bottom, left and right.

my question is using css how can these borders on all the 4 sides be removed.
please provide the complete code to remove the borders displayed by the select tag using css.

thanks in advance.
Reply With Quote

  #2 (permalink)  
Old Dec 12th, 2007, 11:20
SuperMember

SuperMember
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: VERY URGENT how to style a select tag

Can you post the code of your select tag? I have no idea what you are talking about.
Reply With Quote
  #3 (permalink)  
Old Dec 13th, 2007, 01:17
Highly Reputable Member
Join Date: Sep 2007
Age: 15
Posts: 717
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: VERY URGENT how to style a select tag

I'll have a go. From your post I understood that you want to remove the border. Easy enough:
CSS:
Code: Select all
#noborders {
border: none;
}
HTML:
HTML: Select all
<select id="noborders">
<option>1</option>
<option>2</option>
<option>3</option>
</select>
This will remove the border around the box. If you mean the border on the dropdown part, then I must disappoint you; it's not possible.

Good luck!
Last Blog Entry: Windows Vista vs. Mac Leopard (Nov 4th, 2007)
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
chained select box dependable select thenamenoonehastaken JavaScript Forum 0 Feb 8th, 2008 05:49
Need some urgent help....!!!! shevorne Web Page Design 9 Sep 30th, 2007 23:36
How to tell IE7 to use a pariticular style in a single style sheet figo2476 Web Page Design 5 May 25th, 2007 14:23
CSS and select djme Web Page Design 1 Mar 2nd, 2006 02:05
Select a row and go! Please help? taymond JavaScript Forum 1 Nov 16th, 2005 15:50


All times are GMT. The time now is 09:12.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43