This Resource is Unsupported - 7/15/2012
This is a little template modification I made a long time ago for friends who had trouble finding the style chooser. The zip pack includes 14 sparkles. Quick resource for font and glow html code: http://html-color-codes.info/ Original thread
In footer template find this:
Right before {$visitorStyle.title}
Insert this: <span class="choose-style">Choose Style: </span>
Then put this in the bottom of your footer.css template:
Glow Only
color:white is the font color.
text-shadow: #0404B4 is your glow color.
Glow and Sparkles
Sparkles only
This is a little template modification I made a long time ago for friends who had trouble finding the style chooser. The zip pack includes 14 sparkles. Quick resource for font and glow html code: http://html-color-codes.info/ Original thread
In footer template find this:
Code:
<dd><a href="{xen:link 'misc/style', '', 'redirect={$requestPaths.requestUri}'}" class="OverlayTrigger Tooltip" title="{xen:phrase style_chooser}"{xen:phrase style_chooser}:{$visitorStyle.title}</a></dd>
Right before {$visitorStyle.title}
Insert this: <span class="choose-style">Choose Style: </span>
Then put this in the bottom of your footer.css template:
Glow Only
Code:
.choose-style {
color: white;
font-weight: bold;
text-shadow: 2px 2px 2px #0404B4;
}
color:white is the font color.
text-shadow: #0404B4 is your glow color.
Glow and Sparkles
Code:
.choose-style {
color: white;
font-weight: bold;
text-shadow: 2px 2px 2px #0404B4;
background: url(http://www.yoursite.com/images/sparkles/stars1.gif);
}
Sparkles only
Code:
.choose-style {
background: url(http://www.yoursite.com/images/sparkles/stars1.gif);
}