I am trying to center two images side by side, but for some reason it always displays the images beneath each other. Does anyone know how I could get them centered and next
Try changing
#fblogo { display: block; margin-left: auto; margin-right: auto; height: 30px; }
to
.fblogo { display: inline-block; margin-left: auto; margin-right: auto; height: 30px; } #images{ text-align:center; }
HTML
DEMO.