View Single Post
Old 09-02-2008, 10:21 PM   #2 (permalink)
Vigilante
Broken Arrow
 
Vigilante's Avatar
 
Location: US
You could do table parameters in CSS, right?

I'm no expert, but I reverse-engineer everything. I would say if you know a site that has an example, use the web developer extension in FF and get any info you like on the formating, CSS etc.

For instance, on my site:

Code:
/* table inside the the td that holds the block title */

.blockhead {
  color: #FFF;
  font-size: 10px;
  font-weight: bold;
  text-align: left;
  height: 25px;
  width: 162px;
}

.blockheadbg {

	width: 162px;
	background: #242424 url(../images/BlockHeadBG.jpg);
}

/* table that holds the content in blocks */

.blockcontent {
  width: 152px;
  border: 1px solid #000;
  padding: 4px;
  background: #2C2C2C;
}
The way I see it, use both
__________________
We contend that for a nation to try to tax itself into prosperity is like a man standing in a bucket and trying to lift himself up by the handle.
-Winston Churchill

Last edited by Vigilante; 09-02-2008 at 10:25 PM..
Vigilante is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62