View Full Version : Dissolving text effects help
hockeyman12
03-29-2006, 05:13 PM
I used the desloving text effects on my one web page i was wondering if there was any way to make those into links as well?
Paul; :confused:
The only way to fix your problem is to eat more fish. Fish is very good for the brain.
hockeyman12
03-29-2006, 06:27 PM
I got the links in there but everything i have read about changing link colors changes all links on the page. any way i can just change the two link colors at the top of the page that i have used the dissolving text effects for http://www.protechtraining.com/testsite/htdocs
.alias.
03-29-2006, 06:33 PM
ok you need to use CSS to do this, but before i go on you should read the rules and as twey pointed out
Warning: Please include a link to the DD script in question in your post. See this thread for the proper posting format for asking a question.
anyway the follwing CSS code will do this for you
<style type="text/css">
a.fade{
color: red;
}
</style>
that creates a class for an achor with the text color of red.
<a class="fade" href="http://www.google.com">GOOGLE</a>
and thats how to implement it onto your link
hockeyman12
03-29-2006, 06:54 PM
twey and .alias. here is the link to the code i used
http://www.dynamicdrive.com/dynamicindex10/dissolvetext.htm
and thanks for your help im new at all of this.
.alias.
03-29-2006, 07:02 PM
This is the first part of the code from that script and this is what you need to change
<style type="text/css">
.textstyle {
position:absolute;
left:-2000px;
width:400px;
font-family:Arial; //The font change to suit you
font-size:20pt; //size of font ^^^^^^^^
font-weight:bold;
text-align:center;
color:FFFFFF; //color of font change to suit you
filter:glow(color=red,strength=2); //this color is the red arounf your text and strenght is how much it comes out from text
}
.coverstyle {
position:absolute;
left:-2000px;
}
</style>
thats how to fromat what they look like to change the link add in the code i gave you before
a.fade{
color: red;
}
and to use
<a class="fade" href="http://www.google.com">GOOGLE</a>
I think that helps you but the link to YOUR site doesnt seem to have the text on so i cannot see what you mean, but have a link on it but i think this code is what you want
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.