You can style .sideBoxContent {} with whatever border you want, thanks to the comprehensive tag setup for the sideboxes.
You can style .sideBoxContent {} with whatever border you want, thanks to the comprehensive tag setup for the sideboxes.
Hey, that's GREAT!!It's working on all of the sideboxes except for my logo sidebox, which you can see here (top right):
http://www.kings-kreations.com/zen/
Any ideas how to fix the border for just that logo sidebox?
That mod didn't get all of the standard class tags (missing .sideBoxContent). If you add .logosideboxContent to the rule, it will cover that too:
.sideBoxContent, .logosideboxContent {border: whatever;}
I put the following code in my stylesheet & still no dice on that logo sidebox...
.sideBoxContent, .logosideboxContent {
border: 1px solid #000000;
}
Any other suggestions I could try?
Sorry, that's an id, not a class. Use this:
.sideBoxContent, #logosideboxContent {
border: 1px solid #000000;
}
Wonderful! That did the trick!! Thank you so much for your help with this!![]()