hello all
I would like to keep my sideboxes but just remove the border is this possible?
I used a photo editer to kinda give the idea of what im talking about.
thanks
hello all
I would like to keep my sideboxes but just remove the border is this possible?
I used a photo editer to kinda give the idea of what im talking about.
thanks
Find this in stylesheet.css:
.leftBoxContainer, .rightBoxContainer {
margin: 0em;
border: 1px solid #9a9a9a;
border-bottom: 5px solid #336633;
margin-top: 1.5em;
}
I usually change the number before the px to 0 rather than commenting out or removing the 'border' lines, so:
.leftBoxContainer, .rightBoxContainer {
margin: 0em;
border: 0px solid #9a9a9a;
border-bottom: 0px solid #336633;
margin-top: 1.5em;
}
thank you just what i was looking for![]()