Invalid CSS class
-
On line 943 in hCard_widget.php
You incorrecty have a
>
in the class attribute which makes it invalid.<?php if($org_fax !== '') {?><div class="tel hc-organization-fax>" itemprop="faxNumber">F:<?php echo $org_fax;?></div><?php } ?>
should be
<?php if($org_fax !== '') {?><div class="tel hc-organization-fax" itemprop="faxNumber">F:<?php echo $org_fax;?></div><?php } ?>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Invalid CSS class’ is closed to new replies.