SitePoint Sponsor |
|
User Tag List
Results 1 to 7 of 7
-
Apr 18, 2007, 02:29 #1
- Join Date
- Apr 2007
- Location
- Israel
- Posts
- 3
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Firefox dropdownlist covering up text - what's up with this?
Here is a picture of what I am experiencing:
The arrow is covering up the text, can anybody help with this?
It seems to be firefox's standard rendering of a asp:dropdownlist?
Thanks
-
Apr 18, 2007, 08:52 #2
- Join Date
- Nov 2004
- Location
- Right behind you, watching, always watching.
- Posts
- 5,431
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Did you do this in your style sheet:
* {
margin: 0;
padding: 0;
}
I've noticed the new versions of FF doing exactly what you show in my sites where I did that.
-
Apr 18, 2007, 13:59 #3
- Join Date
- Dec 2006
- Location
- Germany, but living in Denmark
- Posts
- 18
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
One idea it is, to play a little bit with css. Try to set width, margin and padding.
Im sure, thats not the best way, but it should works.
greets,
coda
-
Apr 18, 2007, 17:10 #4It seems to be firefox's standard rendering of a asp:dropdownlist?
-
Apr 19, 2007, 04:36 #5
- Join Date
- Apr 2007
- Location
- Israel
- Posts
- 3
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Yes, I'm using the *
DC DALTON, I am using
*
{
margin: 0px;
padding: 0px;
}
in the CSS style sheet. Is that what is causing this? Is there a way to correct it just for select statements?
-
Apr 19, 2007, 06:26 #6
- Join Date
- Apr 2007
- Location
- Israel
- Posts
- 3
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
I think I got it, what do you say...
I put a class .fulldate on the select and it wasn't working until I did this
.fulldate option
{
padding-right: .6em;
}
And all appears good, does that sound right?
-
Apr 19, 2007, 08:18 #7
- Join Date
- Nov 2004
- Location
- Right behind you, watching, always watching.
- Posts
- 5,431
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Bookmarks