Home › Forums › Design › First Bootstrap Site – Code Critique? › Reply To: First Bootstrap Site – Code Critique?
August 29, 2013 at 12:31 pm
#148528
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.