MyBB Community Forums

Full Version: Shade of white problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
See picture. Anyone know which template i can look in to decrease the size of the white and bring the posts up?

Username: Test
Password: Test
Please provide us with the website URL.
Thanks Smile
Please find .tborder in your global.css file, and append the following within it.

padding-bottom: 0;
There is two bits?

.tborder { 
	width: 100%;
	margin: 20px 0;
}

.tborder  {background: #f0f0f0 url(images/glowing/wraptable_bg.png) repeat-x; padding: 14px 12px; border: 1px solid #dedede;
             -webkit-border-radius: 8px; border-radius: 8px; -moz-border-radius: 8px; margin: 20px 0;}
Either one will work. For ease, do the first one.
what remove all of that and then just add padding-bottom: 0;
No, append it, meaning add it to the bottom.

So it should be

.tborder { 
    width: 100%;
    margin: 20px 0;
    padding-bottom: 0;
} 
Still the same.
Are you sure you added it, because I am still seeing the padding being used, and the changes not submitted.
Pages: 1 2