inherit
78013
0
Apr 8, 2019 16:48:21 GMT -8
kenderbard
144
April 2006
kenderbard
|
Post by kenderbard on Jan 26, 2013 0:16:37 GMT -8
Having trouble making tables in the header that will work on multiple skins.
in v4 the table codes I used would reference the skin colors so the background would match the color of, say, categories or background color of the board itself etc. Right now it's always see through with no borders.
Would anyone be willing to help me fix the coding?
|
|
inherit
78013
0
Apr 8, 2019 16:48:21 GMT -8
kenderbard
144
April 2006
kenderbard
|
Post by kenderbard on Jan 29, 2013 21:40:37 GMT -8
Please, please help? This is very important as we used a header table to convey the most important information on the board.
|
|
inherit
177461
0
Apr 21, 2019 7:46:59 GMT -8
Speed33
168
March 2012
speed33
|
Post by Speed33 on Jan 30, 2013 8:30:14 GMT -8
Try using css, div styling and html
Set up your css in the normal manner and you can experiment with html example below
<table align="xxx">
<table class="xxx" cellspacing="0">
<tr><th class="xxx" colspan="3">table text or image</font></th></tr>
(use th for a header of more than 1 column or td if there is 1 column)
((3 column table below))
<tr><th>col 1 text</th><th>col 2 text</th><th>col 3 text</th></tr>
</th></tr></table>
And div styling with css:
((Below example if using images))
<center>
<div style="width: XXXpx; border: Xpx outset silver; border-style: XXXX; background: #XXXXXX">
<table class="xxxxx" cellspacing="0"><tr>
<td class="xxxxx" bgcolor="#XXXXXX"><img src="image"></td>
<td class="xxxxx" bgcolor="#XXXXXX"><img src="image"></td>
<td class="xxxxx" bgcolor="#XXXXXX"><img src="image"></td>
</tr> </table> </div>
</center>
|
|
inherit
78013
0
Apr 8, 2019 16:48:21 GMT -8
kenderbard
144
April 2006
kenderbard
|
Post by kenderbard on Jan 30, 2013 22:52:02 GMT -8
Thank you. I have a functioning table now.
Is there any way to reference the current theme's color scheme? That way the table will look different across several skins rather than relying on one preset color scheme.
|
|
inherit
177461
0
Apr 21, 2019 7:46:59 GMT -8
Speed33
168
March 2012
speed33
|
Post by Speed33 on Jan 30, 2013 22:56:32 GMT -8
Not that I am aware of.
|
|