My website is functioning perfectly in all browsers except for Firefox. The text in Firefox appears larger than it should and gets pushed out of its designated div. How do I adjust the text size specifically for Firefox?
I attempted using the following code, but unfortunately it did not resolve the issue:
<script>
if ($.browser.mozilla) {
$('.first_develop_div').css({
'font-size': '12px'
});
$('.second_develop_div').css({
'font-size': '12px'
});
}//end if firefox
</script>