Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2001
    Location
    Mountain Home Arkansas
    Posts
    131

    alpha(opacity=100) - bold is ugly in IE

    Hey Guys,
    I setup a text fade in thing, but style="font-weight:bold;" looks absoultly horrible in IE. I managed to get it not so bad with a style="font-weight:600;" but I can still see the text corruption.


    Heres the JS I'm using:
    Code:
    function changeOpac(opacity, id) {
        var object = document.getElementById(id).style;
        object.opacity = (opacity / 100);
        object.MozOpacity = (opacity / 100);
        object.KhtmlOpacity = (opacity / 100);
        object.filter = "alpha(opacity=" + opacity + ")";
    }
    rocket science is more fun when you accually have rockets!

  2. #2
    Join Date
    Nov 2003
    Posts
    477
    You can not do anything about that, or use smaller fonts or make .gif images with text (you can even find free scripts for automatic creating text ti images)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •