[php]
p.replyName{
margin: 0 0 0 55px;
color: #f89614;
font-size: 12px;
}
'+$replyName+': '+$replyMessage+'
[/php] For some reason the span style is not changing the reply message to black. Anyone have any suggestions?[php]
p.replyName{
margin: 0 0 0 55px;
color: #f89614;
font-size: 12px;
}
'+$replyName+': '+$replyMessage+'
[/php] For some reason the span style is not changing the reply message to black. Anyone have any suggestions?Some browsers don’t like short color definitions. You should also avoid inline css/js
[php]<?php
$replyName = ‘Jim’;
$replyMessage = ‘Message’;
?>
<?= $replyName ?> <?= $replyMessage ?>
[/php]Thanks for the reply, but that is not solving the problem. I have no idea what is wrong. I have it set up to work just like it should but, for some reason all the text stays orange.
Which browser are you using?