I'm having trouble aligning some images. Below is a screencap of how things currently look:
I'm trying to get all four images to line up on the same "row". Any future images will start on a new row.
I've tried various methods, though none of them have worked. If a user can give my a rough start, I'd be grateful.
I'd like to add that each image has a simple animation:
$(document).ready(function(){
$("#id").hover(function(){
$(this).stop().animate({opacity: 0.75, marginTop: -10}, 400);
},function(){
$(this).stop().animate({opacity: 1.0, marginTop: 0}, 400);
});
});