Thanks for the replies, actually this situation involves a theme from Wordpress, which I'm trying to move the elements around....to customize it further.
So far, I've been successful to achieve a certain degree of change although it sure takes alot of time, considering I knew squat about CSS just a week ago! But still, interesting stuff to occupy my time after work

and I gotta admit I feel a little proud of the fact I can actually mess a little with CSS and a little PHP. So far no major disasters!
I actually created a new element or div called #comments to represent the entire comments block and (everything to do with it) in the CSS file and adjusted the width using percentages, it made all the comment areas smaller and fit into the central column. I'm modifying a three column WP theme....
But I find that the comments appear very low down the page, and there is a big gap between the start of comments and the bottom border of the blogpost entry.
Upon checking the CSS file, I notice the blogpost entry is not a separate div in the CSS file, although all the various elements of post-entry are under /* Posts/. They are not grouped or represented by a single div element...
and likewise there isnt a seperate #comments under /*comments/....so I went to create one and called it #comments. Doing so, enabled me to adjust all the list of comments with one change in #comments.
Should I also create a new #postentry under /* Posts/ to govern the whole bunch of elements there? As I'm trying to make the comments relative to the post entry, I think its better I give the post entries a top governing class or division with a name of its own so to make the theme recognize a relation between comments and post entry? Or is it not needed?
As I mentioned earlier, I wanted to make the #comments be always placed 20px below the blog entry post, I looked at various themes in WP, and all of them dont seem to specify the postitioning of the comments + comments list, it comes naturally for the comments to be right below the post entries....only this theme I'm working at doesnt behave like this...

and at the moment I dont know what's a good command line to "order" the whole comments block to follow the whole entry post block at a requirement of ....well,....20 pixels below it...