Color Picker
Posted: Mon Jun 19, 2006 6:23 pm
http://astions.com/colors/ - Works great in Firefox
I made a color picker a long time ago, was just digging through some old stuff and found it. Problem was that I could never get it to render in IE.
Anyone have any clues?
Here is the css...
I made a color picker a long time ago, was just digging through some old stuff and found it. Problem was that I could never get it to render in IE.
Anyone have any clues?
Here is the css...
Code: Select all
<style type="text/css">
#navlist {
margin: 0px auto 150px auto;
width: 200px;
}
#navlist li {
list-style-type: none;
margin: 0;
padding: 0;
white-space: nowrap;
}
#navlist ul {
margin: 0;
padding: 0;
}
#navlist a {
display: block;
padding: 0px;
border: 0px;
text-decoration: none;
text-align: center;
font-size: 0px;
}
#navlist a:link, #navlist a:visited {
height: 1px;
line-height: 1px;
margin: 0px;
padding: 0px;
}
#navlist a:hover {
line-height: 40px;
font-size: 18px;
padding: 5px;
border: 2px solid;
border-color: #000000;
height: auto;
color: #000000;
font-weight: bold;
}
#navlist a:active,
#uberlink a:link, #uberlink a:visited,
#uberlink a:hover, #uberlink a:active {
}
</style>