Home › Forums › CSS › Issue with an empty span / blockquote › Reply To: Issue with an empty span / blockquote
December 14, 2015 at 9:09 am
#235835
Member
It’s because the the blockquote has a class of pull-right
which makes the element float:right
.
So, the following “text” floats up as though the blockquote isn’t there.
I don’t think you need to float the blockquote so you can probably remove the class.
Alternatively, clear the float on the following div
.gif_wrap {
display: block!important; /* ugh - not necessary */
margin: 0 auto;
clear: both;
}