I've got a text on the homepage of an website i'm working on. The text can be changed an controlled using an CMS and thus is variable. What are my options of getting an dropshadow on this text? I've found an partial solution using this example. This doesn't exactly give me what i'm looking for. I see an shadow being created but it's not inline with the text.
This is how I used the dropshadow plugin;
$("#intro-tekst").dropShadow({
left: 0,
top: 0,
opacity: 0.8,
blur: 2
});
And this is the applied css to the part of the page i'm working on;
#intro-tekst
{
color : #FFF;
float : right;
margin-top : 130px;
width : 730px;
text-align : center;
font-size : 22px;
}
#intro-tekst > h1
{
text-transform : uppercase;
padding : 0px 0px 0px 0px;
margin : 0px 25px 0px 0px;
/*font-weight : bold !important;*/
}
The html i'm working with looks as following;
<div id="intro-tekst" id="Introductie">
<h1>Stijlvol in het nieuwe jaar!</h1>
Naar de mooiste looks!
</div>
Am I doing something wrong while creating this dropshadow? Or are the other solution available? One thing to note here that i'm using Cufon to style the text. I know it can be done with css3 but I need the website to be supported in IE7+, FF, Chrome and Safari and as far as I know this can't be done without using javscript.