Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Issue with an empty span / blockquote Reply To: Issue with an empty span / blockquote

#235835
Paulie_D
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;
}