table border?
Moderator: General Moderators
table border?
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.
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?
Code: Select all
table { border: none; }Re: table border?
Thanks
Re: table border?
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
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?
I don't see a border on the table, but on the individual cells here.
Code: Select all
td { border: none; }Re: table border?
i try, this but as-usual. the border is there.
Code: Select all
td { border: none; }Re: table border?
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?
Wow.. it really Work.. Thank you Celauran.