Remove table border colour (Content page)

I have created a content page … and inserted a table using the default tools (see screenshot).

However, I wish to hide the table border so it can not be seen when someone views the page. Does anyone know what I need to add to the html code below to do this. Thanks.



Bart :mrgreen:


 text here


border.jpg

[color=#282828][font=arial, verdana, tahoma, sans-serif][/font][/color]

[color=#282828][font=arial, verdana, tahoma, sans-serif]Attributes for table tag are available online at [/font][/color][url=“HTML table tag”]http://www.w3schools.com/tags/tag_table.asp[/url]

Hello bart!



Try to do the following:



In the styles.css file add the following class:



.table1 {border-width: 0px; border: 0 !important}

.table1 td {border-width: 0px; border: 0 !important}



And in your HTML you should just add



[color=#282828][font=arial, verdana, tahoma, sans-serif][/font][/color]



You can use this class everywhere where you would like to remove the table border.



[color=#282828][font=arial, verdana, tahoma, sans-serif]Best regards, Alt-team[/font][/color]

Thanks for your help Magpie Don and Alt-team. Much appreciated.



Bart :mrgreen: