Hide table borders in topics

Avatar
  • updated
  • Fixed

I can add tables but how to remove borders?

CSS is removed after posting...

Pinned replies
Avatar
Vladimir Mullagaliyev co-founder
  • Answer
  • Fixed
Hello,
Now you have 2 ways:
1. If you want to hide border just from one table, add class="noborder" to the table
<table class="noborder">....</table>
2. You have "Custom CSS" option. You can write your own css and hide border in the full project
.utex table td {border: 0 none;}
or in some module or topic, for example
#module_428110 .utex table td {border: 0 none;}
Avatar
Vladimir Mullagaliyev co-founder
  • Answer
  • Fixed
Hello,
Now you have 2 ways:
1. If you want to hide border just from one table, add class="noborder" to the table
<table class="noborder">....</table>
2. You have "Custom CSS" option. You can write your own css and hide border in the full project
.utex table td {border: 0 none;}
or in some module or topic, for example
#module_428110 .utex table td {border: 0 none;}