Invisible Border Inside Table - After Upgrading To Helix Ultimate 2.0.4 - Question | JoomShaper

Invisible Border Inside Table - After Upgrading To Helix Ultimate 2.0.4

G

Grzegorz

Helix Framework 2 years ago

After upgrading To Helix Ultimate 2.0.4 the border inside table (in articles) is invisible, but only on computer. On mobile is OK.

Sample link: https://mierzyn.pl/aktualnosci/news/gis-tlenek-etylenu-w-kremie-i-napojach-roslinnych-isola-bio-20210915

0
4 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 years ago #34227

Czesc Grzegorz,

Please listen Pavel advice. You have two options:

  1. Use class for all tables using boostrap 5 styles, for example: <table class="table table-bordered">
  2. Or add borders for table inisde article using custom CSS, for example

.article-details table td {border: 1px solid black; padding:5px;}

Both ways are fully OK and recommended.

0
Muntasir Sakib
Muntasir Sakib
Accepted Answer
Support Agent 2 years ago #34213

Hello there,

Please share two screenshots of the border visible and invisible so that we can have a better understanding.

Thanks!

0
Pavel
Pavel
Accepted Answer
2 years ago #34225

Hi. By default, in bootstrap 5 border-width: 0;. Therefore, you just need to stylize your table. Or better way - use tables from bootstrap documentation https://getbootstrap.com/docs/5.0/content/tables/. You just need to delete existing attributes and add the necessary classes in the <table> tag.

Exemple with bootstrap table class

0
G
Grzegorz
Accepted Answer
2 years ago #34411

It works :) Thank you!

0