Forums

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

Home Forums CSS Images don’t resize in Firefox Re: Images don’t resize in Firefox

#120507
Watson90
Member

The images in Chrome are 66px by 66px and the ones in FF are 120px by 120px.

Change this;

.future-nav img {
width: 120px;
height: 120px;
}

To this;

.future-nav img {
width: 66px;
height: 66px;
}

And it should be fine?