Thanks for the help!
I am running into a problem doing it that way though. It does work for using seperate background images in the sidebox content but it causes spacing issues when I combine the sideBoxContainer and sideBoxContent css information.
Here is the side box content css:
Code:
.sideBoxContent {
background-color: transparent;
background-image: url(../images/sbcontentright.png);
background-position:bottom;
padding: 0.4em;
}
and here is the side box container css:
Code:
.rightBoxContainer {
margin: 0em;
border: 0px solid #404040;
border-bottom: 0px solid #404040;
margin-top: 1.5em;
}
when I combine them like this it causes spacing issues:
Code:
.rightBoxContainer .sideBoxContent {
margin: 0em;
border: 0px solid #404040;
border-bottom: 0px solid #404040;
margin-top: 1.5em;
background-color: transparent;
background-image: url(../images/sbcontentright.png);
background-position:bottom;
padding: 0.4em;
}
It does allow me to use seperate background images for the left and right side box content but it causes spacing isues.
Is there some way I can get seperate background images for the left and right side box content and keep the css for the .rightBoxContainer and .sideBoxContent seperate?
Or is there some other way to do this?