Why is the class mentioned in the p tag not applying in Chrome but working in IE and Firefox?
<p class="p_error"><?php print $this->validation->errorValue;?></p>
Here is the CSS ->
.p_error{
color:red;
text-align:left;
font-size:12px;
}
Any hints or reasons why it's not working?
From the Chrome output -> using inspect element ->
<p class="p_error"></p>
<p>The Treated By field is required.</p>