text-shadow is CSS3 property which applies a shadow to text

learn more… | top users | synonyms

0
votes
1answer
17 views

How do I put text and shadow over my thumbnails (php)?

I have a results list of thumbnails with text underneath. I would like to put the text as white with a shadow rectangle over the base of the thumbnails instead. Anyone know how to achieve this in the ...
7
votes
1answer
107 views

How do I make text-shadow and box-shadow use the text color on all browsers?

I'm trying to create a style for a box with a shadow that's the same color as its text. Because I have several boxes, each with a different text color, I'd like to avoid having to repeat the same ...
2
votes
4answers
95 views

No text-shadow in IE10

I have a menu that has text-shadow applied to it, so that it blurres the links. It works as expected, except that in IE10 it completely hides the links. Only when hovering over links they are ...
0
votes
2answers
49 views

How to get hovering shadow under a letter with CSS-only?

I would like to reproduce the following logo, add a shadow below one letter as in the using only CSS. How to do it as box-shadow overflow on both side of the letter ? I would prefer to avoid having ...
0
votes
1answer
51 views

CSS text-shadow opcity

I'm using part CSS for my practice website and I want to add a shadow to my text, but I want to change the opacity on the shadow, this is the code I'm working with. Thanks in advance. #text{ ...
0
votes
2answers
60 views

Manipulate text-shadow color with HTML5 color input type

I am attempting to change the color of a text shadow using the HTML5 color input type: <script> $('#shadowcolor').on('change', function() { var shadowcolor = $('#shadowcolor').val(); ...
2
votes
1answer
170 views

Glow text + text outline in CSS (already using text-shadow for glow)

So I've hit a bit of a brick wall. I am using a keyframes glow for some text, but I also need to apply a text outline as well. Is this possible in CSS? Please see attached. The text is green so ...
3
votes
1answer
68 views

Any way to have text-shadow that doesn't show through behind text?

I want to have text that has a shadow/glow, but the problem is that the text itself is slightly transparent and the shadow shows through behind it, colouring the text. color: rgba(226,229,226,0.88); ...
0
votes
0answers
27 views

Large text-shadow layout problems with hovered anchors in CSS3 columns

Here's a Dabblet which demonstrates what is happening. No problem with Firefox 18.0.2 but in Chrome and Safari, either the li elements or the anchors inside them cause layout problems with the CSS3 ...
0
votes
0answers
63 views

Text-shadow issues with ie

I am using following css rules to add some text-shadow. .aaactive { text-shadow: 1px 1px #990000; } I 've searched quite the web to find a solution for ie version < 10 (unfortunately many ...
1
vote
1answer
109 views

text-shadow applied to Google Web Fonts in iOS browsers

I'm getting a problem on iOS with the standard text-shadow effect applied to Google Web Fonts. The font appears doubled with a shadow behind two layers of the font-color. It's most pronounced on my ...
0
votes
1answer
163 views

Adding depth/dimension to an icon font?

I would like to put a border, i.e., give some depth or dimension, around an icon but it doesn't look like CSS's text-shadow property is what I should be using. I'm using the FontAwesome icon ...
0
votes
0answers
97 views

Glowing text in IE (DXImageTransform.Microsoft.Glow) and antialiasing

I'm trying to create a glowing text which will work correctly in Internet Explorer. I have this text-shadow declaration: text-shadow: 0 0 4px White; and for IE, I added this: filter: ...
0
votes
2answers
105 views

Browser support for text-shadow spread value

Seen discussions here but it has been 2 years! I don't know if I'm using this right but I have the following sass/compass code: +text-shadow(red 0 3px 0 3px) Generating the following css: ...
0
votes
0answers
111 views

Radial text inner shadow in CSS

I'm trying to create a radial inner text shadow on a masked text animation. Text shadow creates a solid shadow in this case as I'm using a bullet. Any ideas? <div class="parent"> <div ...
0
votes
3answers
203 views

text shadow not display correctly in ie css

I have applied text shadow for my heading using the following css. h1, h2, h3, h4, h5, h6, p, span { text-shadow: 1px 1px 1px #999 !important; filter: ...
0
votes
0answers
73 views

css text shadow filter for a tag

Why doesn't the following dropshadow filter work for the a tag in Internet Explorer? <!--[if IE]> <style type="text/css"> .myclass { FILTER: DropShadow(Color=#000, OffX=1, OffY=1, ...
0
votes
1answer
54 views

jQuery getting text-shadow variabile (multiple shadows)

I want to get all shadows applied to an element. box-shadow:10px 0px 10px rgba(1, 2, 1, .5),0px 10px 10px rgba(1, 1, 1, .5); I need to get it into variables : Shadow1 = "10px 0px 10px rgba(1, 1, 1, ...
0
votes
1answer
146 views

How do I add a slide-in effect and a glowing effect using HTML5/CSS3 or JavaScript?

I think a description of what I am looking for will be best: Let's say I have a sentence: Hello World! This is KPO! I want each word to show up 2 seconds after the latter has been displayed. And ...
1
vote
3answers
2k views

Text border using css (border around text)

Is there a way to integrate a border around text like the image below?
0
votes
2answers
87 views

Achieve an inner text-shadow for thinner looking fonts

I've seen other solutions on this topic, but none of them did the result I need (or want). The problem is, Mac renders some fonts in an awkward way, the fonts are way too thick, even on Regular ...
1
vote
1answer
311 views

css to remove text shadow on select / highlight text (mozilla)

I'm using text shadows for most text site wide, but when you highlight / select the text - the text looks fuzzy. So in order to remove the text shadow I use this css from here. ::-moz-selection, ...
0
votes
3answers
334 views

CSS: glowing text with glow very wide and high

I'm investigating since some days box-shadow and text-shadow. I'm trying to gain the following effect. I want a glow come out from the text of the <a> once hovered. Simple, this should be easy ...
0
votes
1answer
397 views

How to convert text-shadow so IE9 will work

How would I set the text-shadow property in ie9 to match the other browsers like I've got it below? How to use .sysMenu-item text-shadow ...
0
votes
0answers
169 views

Setting UILabel shadow color for selected state with Appearance Proxy

I would like to customise,using iOS5 Appearance proxy,the shadow color of all the UILabel objects in my app when their status is selected. I tried something like: [[UILabel appearance] ...
2
votes
1answer
125 views

CSS text-shadow that works on different font-sizes

I have the following CSS on my h2 { font-family: Arial, Verdana, sans-serif; color: #fff; text-shadow: 0 6px 0 #E5E5E5 } The problem is that this looks good only on some font-sizes, in ...
1
vote
1answer
143 views

image border on text using CSS?

I've seen codes using text-shadow to make the text have a plain color outline, like this post describes: CSS Font Border? but I would like to use an image for the border. When I add border-image: url ...
0
votes
4answers
232 views

how can i enable text shadow in ie

how can i enable text shadow in ie with 1 file convert vars (text-shadow:0 0 10px #fff;) so make any text shadow work with out add filter or edit all css just cuz i have about 190 line have text ...
4
votes
2answers
415 views

CSS text-shadow 1px retina

CSS doubles 1px text-shadow to 2px on retina screens. I need just 1px. Any solutions? 0.5px not working.
0
votes
1answer
131 views

Animation & IE Text Shadow Conflict

I have 2 small problems: 1) I set up text shadows in IE7/8/9 using a script based on Kilian Valkof's plugin. As they are animated, when you mouseover and then mouseout in IE, a black box is produced ...
1
vote
4answers
366 views

Letter Press Effect

I can't seem to get the color values/names correct so that I can get a Letter Press Effect on the text. To create the appearance of text that has been stamped, choose a text colour that is ...
0
votes
1answer
211 views

Text shadow color hidden in the stylesheet

Please observe this stylesheet: http://jsfiddle.net/VjhJ4/12/ If you hover your mouse over the anchored menu, you will see that there is a grey/white-ish shadow to the text. Where can I change that ...
5
votes
2answers
5k views

Text shadow opacity

Is it possible to adjust the opacity of just the text shadow, rather than the text itself as well? E.g I have purple text with a blue shadow. I'd like to make the blue shadow have an opacity without ...
0
votes
0answers
171 views

Incorrect textshadow offset in IE7 and IE8

While using the textshadow with cufon I am experiencing some issues in IE7 and IE8. The offset displays incorrect. The horizontal as well as the vertical offset are displaying at the wrong position. ...
0
votes
1answer
147 views

CSS before content on link has phantom text shadow on underline that is set to none

I'm trying to style a simple a tag to have a preceding icon which I have got to a point where I am reasonably happy with it (although I am still not sure I'm doing it the best way). I am using text ...
0
votes
2answers
3k views

CSS3 text-shadow IE

I have been trying to find out how this website managed to get the text shadow function working so slick in IE 7+. Perhaps it is using some filter but i cannot see it in the style sheet of the ...
3
votes
1answer
256 views

Animating multiple text-shadows with Jquery

I'm trying to create the effect of a Neon sign that changes color. For that I'm using (only for Chrome, FF, Safari and Opera) 4 text-shadows all with the same color but with different blur sizes. The ...
0
votes
1answer
272 views

RGBA Text alternative for IE 9. Can't get this work around to work

the whole point of this is to have transparent text with a light white shadow to make the text look like it's embedded into the background. In all other browsers I simply do this to the text: ...
4
votes
4answers
177 views

css text-shadow

Is there a way to add a text-shadow in CSS that is similar to the text-shadow created in Photoshop? I have tried, but the resulting shadow is still different than in Photoshop.
0
votes
2answers
196 views

CSS - target non text-shadow supporting browsers

Is there any CSS hack to target just browsers that do not support the text-shadow CSS property? It is a very important visibility/readability/accessibility problem, since something like having light ...
1
vote
1answer
259 views

css text-shadow differences in chrome and mozilla

Lets say I want to add shadow to a text of size 33 px. The unit I prefer for shadows is em as I want the shadows to scale when the page is browser zoomed. I want my shadow fuzziness to be 2px. So my ...
3
votes
4answers
257 views

text-shadow with em instead of px?

I have a simple text-shadow: 0.05em 0.05em 0.05em black; I open in Google Chrome and there is no shadow at all! I change it to text-shadow: 1px 1px 1px black; and it works! What is the matter?
0
votes
0answers
194 views

Modernizr “text-shadow” Fallback

I about to try using Modernizr for the first time (after reading some tutorials & searching the web - which weren't that helpful) All I want to use it for is to enable IE to recognise HTML5 Tags ...
2
votes
2answers
5k views

Different line-height in Firefox and Chrome when using text-shadow

For some reason, Firefox and Chrome render line-height differently when using text-shadow. CSS: #tracker { width:200px; color:#999; font:normal 12px Verdana,sans-serif;/* Swapped out ...
1
vote
3answers
489 views

Which browsers support text-shadow in ::selection

Trying to get some documentation on this. Have seen it used in some websites where they declare text-shadow in their ::selection pseudo element. Does anybody know if IE supports shadows on selected ...
0
votes
2answers
2k views

CSS3 text-shadow distorts/pixelates in all IE browsers (see screenshot pls)

I just put text shadow on an element and it looks fine in all browsers except any IE. See the black pixles around the text? color: #68C3C7; font-family: "Hoefler Text",Baskerville,"Big ...
2
votes
1answer
3k views

Text shadow Inset effect css3

I want the inset effect for the above button. The 'text' cancel appears to be type pressed. I have tried a lot of examples available online but they don't have white background examples. Help me to ...
0
votes
0answers
165 views

Hilighted links with text-shadow erase bars in selection on hover

When I mouse over links that are highlighted, it seems it creates a sort of bar in the selection. Very weird. It's lower down than underlines would be so I don't think it's related to that. I have ...
0
votes
2answers
1k views

Text-decoration:none and text-shadow conflict

Even though text-decoration is none, applying a text-shadow to a link appears to - on hover - show the shadow of an invisible underline (Chrome only, Firefox ok). JSFiddle. HTML: <a ...
0
votes
1answer
90 views

css3 text shadow for text color #037ECC

I would like to give text shadow for my text using css3. Can anyone help me to apply text shadow. I tried using some online text shadow generators. But i couldn't able to get proper text shadow. My ...

1 2