I have a group of images (25 to be exact) that I want on one line. Apparently, I went a little over and the last image goes to the next line. Is there a way to force all the images to one line?
See what I'm talking about here: http://silencenogood.net/test/
you could widen the container these images are in:
.home-post-wrap{width:658px;}
find this style in styleRed.css of your theme
.home-post-wrap {
width: 643px;
float: left;
background-image: url(images/shadow.gif);
background-repeat: no-repeat;
background-position: bottom;
padding-bottom: 40px;
margin-bottom: 10px;
}
and change the width there
God, I really need to start working with CSS more. Very simple fix, much appreciated!