-moz-border-radius: 7px;
}
== Disable Hover Text ==
Place the following script in the "Insert in HTML <HEAD>" setting.
<code>
<script>
$(document).ready(function() {
var $title = $("td,div,span");
$.each($title, function(index, value) {
$(this).tooltip({
disabled:true
});
});
});
</script>
</code>