Hoshi
inherit
-5248048
0
Nov 29, 2024 13:51:21 GMT -8
Hoshi
0
January 1970
GUEST
|
Post by Hoshi on Apr 4, 2013 8:22:00 GMT -8
link: www.monochromatic.proboards.com/index.cgiI've tried several different codes for tables at the top of my forum, but no borders are showing up around them. There's only positioned text. I'm sorta confused :/ Any help is appreciated. Thanks!
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Apr 4, 2013 17:36:26 GMT -8
You have this in your global headers which changes every table to this color:
<style type="text/css"> <!-- table, td { background-color: #C0C0C0 !important; } --> </style>
So that is negating the "bordercolor" you have in your skins because the "bordercolor" is actually a table background color behind all your other colors and not a border at all.
Your table is using the class bordecolor but the css above changes it.
<table width="750px" cellpadding="4" cellspacing="1" align="center" class="bordercolor">
If you only want a border around your added tables in your header then you'll have to manually add it like so:
<table width="750px" cellpadding="4" cellspacing="1" align="center" style="border: 1px solid #000000;">
Or remove that css and then the bordercolor you put in your skins will then work.
|
|
Neko
New Member
Posts: 18
inherit
192266
0
May 19, 2013 9:27:37 GMT -8
Neko
18
April 2013
hoshi
|
Post by Neko on Apr 5, 2013 13:33:42 GMT -8
I manually added the border and it worked ^^ Thanks for the help
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Apr 5, 2013 23:30:21 GMT -8
No problem and you're welcome.
|
|