| The point I was making was <table> <td> <tr> etc are all HTML commands not PHP as you said, as for CSS it's a lot more than that, it doesn't have to be site wide you can use it on just one page if you like
Something like
DIV.table-row {
background: none #ffffcc; border: solid #000000 1px; color: #000000;
margin-top: 0; margin-right: auto; margin-bottom: 0; margin-left: auto;
padding: 0; text-align: center; width: 96%;
}
or
DIV.box {
border: none; float: right; margin: 0; padding: 0; width: 50%;
}
Would give you some very configurable floating boxes by using class or id's or you could make them static
As for your gallery I would install one of the many free one's available and build your links round that. btw what contributions have you made? I've done quite a few hacks for vbulletin wouldn't know where to start with osc |