For boxes that are the same size, there's no need to duplicate what you've already got since classes are re-usable, you can make as many as you want.
For those parts of the box that ARE the same, you don't need to duplicate, just add those classes on to the existing section so this:
Code:
.cssbox, .cssbox_body, .cssbox_head, .cssbox_head h2{
background: transparent url(../images/boxcorner.png) no-repeat bottom right}
becomes this:
.cssbox, .cssbox_body, .cssbox_head, .cssbox_head h2, .cssbox1, .cssbox_body1, .cssbox_head1, .cssbox_head1 h2{
background: transparent url(../images/boxcorner.png) no-repeat bottom right}
[/code]
Only add new classes where something is going to be different, and you can still group similar boxes as above.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|