Forums

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

Home Forums Design First Bootstrap Site – Code Critique? Reply To: First Bootstrap Site – Code Critique?

#148528
Paulie_D
Member

I think it’s here at line 212 of your custom.css

#home-intro-image img {
margin: 0;
padding: 0;
}

I think that needs to be

#home-intro-image img {
margin: 0 auto;
padding: 0;
}

to center the image.

You may have a problem with that absolutely positioned “learn more” element though. You might want to think about wrapping that img and element in a centered div of their own so everything works out right.

http://codepen.io/Paulie-D/pen/KuhEa