http://japantown.awardspace.com/messageboard/
At the very bottom of the board, there is copyright information. Above that, empty space, above that, an image, and above that more empty space. I want to remove that image, but if I were to do that there would be a lot of empty space there. I would like the image removed along with the extra space it takes up and the space above it. How do I do that?
Thank you
In this in your CSS: #footer_section
Remove:
background: url(../images/theme/main_block.png) no-repeat 0 -820px;
In this part, change this:
#footer_section div.frame
{
background: url(../images/theme/main_block.png) no-repeat 100% -820px;
display: block;
padding: 60px 0 0 0;
}
To this:
#footer_section div.frame
{
display: block;
}Alternatively, if you want some sort of padding for the copyright area:
#footer_section div.frame
{
display: block;
padding: 20px;
}
Changing the 20px to a size of your liking.
Thank you, it worked perfectly.