Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Trivial
-
Resolution: Fixed/Completed
-
Affects Version/s: 2.2.7
-
Fix Version/s: 3.0
-
Component/s: Standalone CiviCRM
-
Labels:None
Description
Currently the following occurs at the top of templates/common/standalone.tpl:
<br clear="both"/>
However, "both" is not a valid value (AND using clear as an attribute is deprecated - we should be using CSS). It may be causing display problems in IE and Safari:
http://forum.civicrm.org/index.php/topic,9165.0.html
Replacing the above with:
<br style="clear: all;"/>