Page 1 of 1

table border?

Posted: Thu Apr 12, 2012 8:46 pm
by jayson.ph
Hi all,

There is any possible to disable the border line from the table even if you declare it as border="0" but still there the line remain? please any suggestion. thank.

Re: table border?

Posted: Thu Apr 12, 2012 9:45 pm
by Celauran

Code: Select all

table { border: none; }

Re: table border?

Posted: Fri Apr 13, 2012 12:14 am
by jayson.ph
Thanks

Re: table border?

Posted: Wed Apr 18, 2012 1:26 am
by jayson.ph
Hi all.

i wondering this, why it still the line border is there. is their any code for it to disable the line. i use the code who suggest by "celauran".
here are the code i use for the border and the site is here.

http://www.octagon.com.ph/cms.php?id_cms=14

Code: Select all

border: none;
font-family:Verdana,Arial,Helvetica,Sans-Serif;
font-size:14px;
color:#000000;

Re: table border?

Posted: Wed Apr 18, 2012 6:14 am
by Celauran
I don't see a border on the table, but on the individual cells here.

Code: Select all

td { border: none; }

Re: table border?

Posted: Wed Apr 18, 2012 9:57 pm
by jayson.ph
i try, this

Code: Select all

td { border: none; }
but as-usual. the border is there.

Re: table border?

Posted: Thu Apr 19, 2012 6:21 am
by Celauran
You have to look at the rules you've already got applied. .rte td and .mceContentBody td both apply borders to table cells.

Code: Select all

table.jph_tbl_brotherpromo1 td { border: none; }

Re: table border?

Posted: Thu Apr 19, 2012 10:14 pm
by jayson.ph
Wow.. it really Work.. Thank you Celauran.