Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8183605
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T01:12:51+00:00 2026-06-07T01:12:51+00:00

I am trying to make a page that ‘unblurs’ (removes the text shadow) on

  • 0

I am trying to make a page that ‘unblurs’ (removes the text shadow) on hover.

This works in all browsers except for IE: http://mmhudson.com/brett.html

It doesn’t work because I am setting the color to ‘transparent’ when the element is not being hovered on and the IE filter ‘blur’ inherits that so the text shadow is also transparent.

How can I make the filter not inherit that or make it so that only the shadow is invisible?

I am currently using a plugin, but I could use regular css if that is preferable.

http://jsfiddle.net/PaDwt/

Note the html if IE block

I only need support for IE8 and IE9, but IE7 and earlier would be good too.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T01:12:52+00:00Added an answer on June 7, 2026 at 1:12 am

    The problem is not that it is inheriting the transparent color, it’s that IE doesn’t support text-shadow at all.

    Use this stackoverflow.com/questions/6905658/css3-text-shadow-in-ie9

    p.shadow { 
        filter: progid:DXImageTransform.Microsoft.Shadow(color=#0000FF,direction=45);
    }
    

    ———–EDIT————–

    Is this what you’re looking for?
    http://jsfiddle.net/PaDwt/4/

    -CSS

    #paragraphs p{
      /*the width needs to be a set value, not a percentage*/
      width: 600px;
      /*blur all paragraphs*/
      color: transparent;
      text-shadow: 0px 0px 2px #666666;
      filter: progid:DXImageTransform.Microsoft.Blur(pixelradius=3);
    }
    

    -JS

    $(document).ready(function(){
      if($.browser.msie) $("#paragraphs p").css("color", "black");
      $("#paragraphs p").mouseover(function(){
        var thisP = this;
        if($.browser.msie)
        {
          $("#paragraphs p").css({
            filter:"progid:DXImageTransform.Microsoft.Blur(pixelradius=3)"
          });
        }
        else{
          $("#paragraphs p").css({
            color:"transparent",
            textShadow:"0 0 2px #666",
          });
        }
        $(thisP).css({
          color:"#000",
          textShadow:"none",
          filter:"none"
        })
      });
      $("#paragraphs p").mouseout(function(){
        if($.browser.msie)
        {
          $("#paragraphs p").css({ 
            filter:"progid:DXImageTransform.Microsoft.Blur(pixelradius=3)"
          });
        }
        else
        {
          $("#paragraphs p").css({
            color:"transparent",
            textShadow:"0 0 2px #666"
          });
        }
      });
    });​
    

    This works for me in IE9.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to make a full page DIV that holds all my content but
So I'm trying to make a registration page that feeds back a variable when
I have a page that I am trying to make a generic style of
I'm trying to make a web scraper that will parse a web-page of publications
Short question: I'm trying to make that in a given page (uses tabs) back
I'm trying to make a WordPress site that has six lists on a page,
Hey I am trying to make a page that inserts some strings into a
I'm trying to make a web page that only has content within the page
I'm new to rails and I'm trying to make a help page that just
I'm trying to make a list view in a page that is liked form

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.