
Originally Posted by
covone
If you notice on product listing page I took off the description, what happens is the title of the product wraps to 2 lines.
First, for the title if it is long and the provided space of width is not enough than it will warp to next line or lines.
And then your title now is:
<h3 class="itemTitle"><a href=" ... LINK ... ">Crystal Bear</a>
The font size is h3 and bold, you may want to reduce it a bit to match. But this can't get rid of the line wrap of the title for the limited width.

Originally Posted by
covone
The more info and price is not aligning. I wanted to align these 2 areas to bottom and don't know what page to do this and how to change this.
Add the following to your stylesheet and will remove the spaces under the title and between the price and more info. Then you can style them by their related attributes but with more freedom.
Code:
.centerBoxContentsProducts br {
line-height: 0;
}
Hope this htelps. 
.