nbazone23.proboards.com/1. I would like to connect the banner on top with the "home", "messages" buttons, etc. (Getting rid of the little space in between them)
2. Have chatbox and the time clock table above it be connected (no space in between).
3. Space in between last category and forum info and stats table.
1. In that css I gave you, you can change the margin to push the menu further right but the problem is, when you are logged in and all the buttons are showing it's all going to be very squished and may not fit unless you don't have some of the buttons not showing. My recommendation would be to change the width of your banner to fit the width of your forum. It's always better to resize the image but until you get around to it you could add this to the bottom of your style sheet:
#logo img {
border: 5px solid black;
width: 720px;
height: 160px;
}
And then to get the home and other bottoms moved over and up you'd find this in the css I gave you and change/add the margin:
So this:
#navigation-menu{background-color:transparent!important;
background-image:none;margin-left:-8px;margin-top:-2px;
}
would be something like this:
#navigation-menu {
background-color: transparent!important;
background-image: none;
margin-left:
134px; margin-top: -5px;}
Then to get the welcome also under the banner find the welcome css part and add the blue:
#welcome{width:300px;
background: #000000 url('http://images.proboards.com/v5/gradients/wave.png') left center repeat-x;
border: 0px solid #000000;
-webkit-border-bottom-left-radius: 20px!important;
-webkit-border-bottom-right-radius: 10px!important;
-moz-border-radius-bottomleft: 20px!important;
-moz-border-radius-bottomright: 10px!important;
border-bottom-right-radius:10px;
border-bottom-left-radius:20px;
padding-right:8px;
margin-right:-8px;
text-align:center;
color:#f80c0c;
font-weight:bolder!important;
-webkit-box-shadow: 2px 2px 6px 0px #351606;
-moz-box-shadow: 2px 2px 6px 0px #351606;
box-shadow: 2px 2px 6px 0px #351606;
margin-top:1px;
position: relative;
right: 144px;}
But again, not sure if that will leave room for all your buttons and plus, if a member with a long, long name logs in and it shows in the welcome area, that might cause issues too. But doing that then leaves the nav tree looking a bit funky being wide.
I can't figure out how to do #2.
#3. You can add this to the bottom of your style sheet:
/*move info center up*/
.container.stats {
margin-top: -36px;
}
However, on your site it is going to leave bits of blue on either side so, off hand, the only thing that seems to work would be to make the background black so the above would then become:
/*move info center up*/
.container.stats {
margin-top: -36px;
background-color: black;
}