Here is a small example I came up with :
<html>
<head>
<title>about:blank</title>
<script language="javascript1.2">
<!-- copyright(c) avcoh@yahoo.com
function setCheck(obj)
{
if (obj.checked)
{
obj.firstChild.innerHTML = ""
}
else
{
obj.firstChild.innerHTML = "a"
}
obj.checked =!obj.checked;
}
-->
</script>
<style>
.checkbox
{
font-family:webdings;
position:relative;
font-size:18px;
color:#333399;
top:-4;
left:-2px;
}
</style>
</head>
<body>
<div style="width:15px;height:1
</body>
</html>
Main Topics
Browse All Topics





by: avnerPosted on 2003-09-10 at 22:28:44ID: 9334479
No. Checkbox, Radiobutton and Dropdown border are fixed properties that cannot be changed.
The only way to workaround it is to use a DHTML checkbox.