Forums

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

Home Forums CSS css issue Reply To: css issue

#286337
Paulie_D
Member

Your images are fixed width

.hero_img {
    display: inline-block;
    width: 367px;
    float: left;
}

and so are the .copy divs

.copy {
    width: 581px;
    display: inline-block;
    vertical-align: middle;
    float: left;
    margin-top: 20px;
}

I’d start there,