Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter LuukPotman

    (@luukpotman)

    my website is http://www.luukpotman.nl
    (under construction)

    Thread Starter LuukPotman

    (@luukpotman)

    I mean, the shadows must be lighter in IE8 (the same as Chrome, Firefox and IE9)

    Plugin Author Cristopher Dino

    (@cristopher-dino)

    Hi LuukPotman,

    Thank you for using my plugin. I’m Cristopher, The developer of the plugin. Sorry for the late reply.

    The plugin does not support “rgba” color. In which you used. But you can use CSS HEX color code that has a format like this “#000000″(color black).

    For this plugin to work. you need to change your code under “#wrapper”:
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
    to
    box-shadow: 0 0 18px #000004;

    rgba code 0, 0, 0, 0.4 is equal to #000004

    so your code must look like this:

    #wrapper {
        background: none repeat scroll 0 0 #F8F8F8;
        box-shadow: 0 0 18px #000004;
        margin: 0 auto;
        max-width: 1140px;
        overflow: hidden;
        position: relative;
    }

    If this works for you. I would appreciate if you could rate the plugin. You can rate it here: http://wordpress.org/support/plugin/ie-css3-support

    Thread Starter LuukPotman

    (@luukpotman)

    Helle Cristopher,

    Thanks for the answer ! It works !
    I have change the code (see under)
    My site is now the same in Firefox, IE8/9 and Chrome

    #wrapper {
    background: none repeat scroll 0 0 #d9d9d9;
    box-shadow: 0 0 15px #5b5b5b;
    margin: 0 auto;
    max-width: 1100px;
    overflow: hidden;
    position: relative;
    }

    regards Luuk

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘shadow too dark’ is closed to new replies.