Forums

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

Home Forums CSS Dimensions of site elements change on click Reply To: Dimensions of site elements change on click

#235283
Paulie_D
Member

I think Shikkediel was on the right track.

This:

.ximg-thumbnail:link, :visited, :active {
    border: 1px solid #ddd;
}

looks to be the culprit.

I suspect it’s incorrect and should be:

.ximg-thumbnail:link, 
.ximg-thumbnail:visited, 
.ximg-thumbnail:active {
    border: 1px solid #ddd;
}

At the moment any element is getting this border when it is clicked.