Providing More Space for Body Section

Hello everyone,

I have now implemented new graphics in my site. However, it still looks bad… I know I need to shrink the size of the menu buttons, but still, is there a way to add more room to the body section?

I have read that it’s bad to overuse the <br /> tag, but it seems like the only logical solution in this case.

You can see my site at productreviewsbytyler.com

Te more you type in there, the more it will expand. If you want more room between element, add padding or margin to them. Don’t use <br> for spacing.

To make the #body div wrap around the menu, add overflow: hidden to that div. E.g.

#body {
  background-image: url("body.jpg");
  margin: 0 auto;
  text-align: center;
  width: 600px;
  [COLOR="Red"]overflow: hidden;[/COLOR]
}