Have some html content with some float:left, float:right css that isn’t displaying correctly on the production site. Works fine on the test site, naturally. Here’s a snippet… (the two spans with the class=“alignleft/right” are the problem) They overlap on the production site. Anyone have any ideas, suggestions, etc?
<p>
<span class=“BoldCAP”>Spotlight Theatre Art Gallery</span>
<br>
1622 19th St
<br>
<span class=“alignleft”>Bakersfield</span>
<span class=“alignright”>661 634-0692</span>
<br>
<a target=“_blank” href=“http://www.theatreap.com”>www.theatreap.com</a>
<br>
The theatre presents works of local artists on a monthly, rotating basis.
</p>
Here’s the css:
.alignleft {
float:left;
}
.alignright {
float:right;
}