New Zenner
- Join Date:
- Jul 2009
- Posts:
- 84
- Plugin Contributions:
- 0
remove borders from sidebox's
Just wondering if someone can tell me how to remove all the borders from the sidebox's and what files to edit ?
Thanks
New Zenner
Black Belt
New Zenner
gjh42:
Most styling is done in /includes/templates/your_template/css/stylesheet.css. You seldom need to edit PHP files.
Look for
.leftBoxContainer, .rightBoxContainer {}
Black Belt
.leftBoxHeading, .rightBoxHeading {
margin: 0em;
background-image:url(../images/box000.gif);
background-repeat: no-repeat;
padding: 20px;
}
.leftBoxContainer, .rightBoxContainer {
background-image:url(../images/box001.gif);
background-repeat: repeat-y;
margin-top: 0px;
border: none;
}
.sideBoxContent {
background-image:url(../images/box002.gif);
background-repeat: no-repeat;
font-size: 11px;
color: #000000;
line-height: 125%;
background-position:bottom;
padding-top: 5px;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 25px;
}New Zenner
gjh42:
Your template uses background images for the border lines. Odd choice, but effective..leftBoxHeading, .rightBoxHeading { margin: 0em; background-image:url(../images/box000.gif); background-repeat: no-repeat; padding: 20px; } .leftBoxContainer, .rightBoxContainer { background-image:url(../images/box001.gif); background-repeat: repeat-y; margin-top: 0px; border: none; } .sideBoxContent { background-image:url(../images/box002.gif); background-repeat: no-repeat; font-size: 11px; color: #000000; line-height: 125%; background-position:bottom; padding-top: 5px; padding-left: 20px; padding-right: 20px; padding-bottom: 25px; }
Destination thread ID and reason are required when shown.
Tell staff why this post should be reviewed.
Required for login, security, and core site functionality.
Help us understand how the site is used so we can improve it.
Used for promotion and personalized campaign measurement.