Etoile wrote:The problem is the space between the blue bar and the white frame, I need to remove it so that it will look clean. Everything I tried to remove this space blowed up the whole forum design! I need to work on it again, but I feel like I'm getting close.
In the CSS I gave you, remove margin: 10px 0; or change it to margin: 0 0 10px;
The margin attribute is what gives you room between the box area and the other boxes (the values are defined in order by: top, right, bottom, left). Alternatively you can just specify margin-top, margin-left, margin-right, margin-bottom separately if you need them.
If you are using the div box in more than one place use div class="extraInfo" and use .extraInfo in the css instead of #extraInfo. It is technically incorrect to use ids in more than one place on a page and that is what classes are for.
I'd recommend that you read up on a basic CSS guide to learn more about it (it really isn't that difficult).
This site: http://www.w3schools.com is a great resource for getting started.