Quote:
Originally Posted by C_P
ok, I may be doing something wrong here
|
Didn't test the mod yet, but you have way to much html in the replacement. Perhaps try
PHP Code:
vB===<a href="http://www.vbulletin.com"><font color="#008000">vB</font></a>|||Computer Paradise===<a href="http://www.cpfools.com"><font color="#008000">Computer Paradise</font></a>|||rules===<A href="http://www.cpfools.com/index.php?option=com_content&task=view&id=5&Itemid=6"><font color="#008000">rules</font></a>|||tutorial===<a href="http://www.cpfools.com/tutorials/"><font color="#008000">tutorial</font></a>
or better: give the replacement tags a class (maybe with the name replacement) and define them via css:
PHP Code:
vB===<a href="http://www.vbulletin.com" class="replacment">vB</a>|||Computer Paradise===<a href="http://www.cpfools.com" class="replacment">Computer Paradise</a>|||rules===<A href="http://www.cpfools.com/index.php?option=com_content&task=view&id=5&Itemid=6" class="replacment">rules</a>|||tutorial===<a href="http://www.cpfools.com/tutorials/" class="replacment">tutorial</a>
then add the following to your css:
Code:
.replacement {
color: #008000
}