Versions

CSS3_Text_Shadow.fwaction (2010-05-11) (Downloaded 59 times)

Contains:

  • CSS3 Text Shadow (action) - v. 0.1
  • CSS3 Text Shadow (item-action) - v. 0.1

Compatible: Pro 4 and Pro 5

Author: Walter Davis

developer javascript prototype

Apply this Action to an HTML box to add a CSS3 text shadow to all text within it.

3 Comments

Walter, this Action seems to not be outputting a semicolon after the color in the HTML code. For example, it generates something like this:

BodyText { text-shadow: 1px 1px 1px #000000 }

But it should be this:

BodyText { text-shadow: 1px 1px 1px #000000; }

Hi james
Its not Walter but Max
The last attribute in a style doesn't need a semi colon, it's just there to spilt up the different segments of a complete style eg:

  .bodytext {colour:#00ff22; text-shadow:1px 1px 1px #000000 } 

and so if its the only thing specified or at the end then it doesn't need the last semicolon.

all the best max

oops!! UK spelling of COLOUR that should have read

  .bodytext {color:#00ff22; text-shadow:1px 1px 1px #000000 } 

:o)

and so if its the only thing specified or at the end then it doesn't need the last semicolon.

all the best max

Sign In or to comment.