Home › Forums › CSS › Images don’t resize in Firefox › Re: Images don’t resize in Firefox
January 10, 2013 at 7:41 am
#120507
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?