Hi,
In several cells I am using <strong>something</strong>
to make the font bold. This works great in normal view but when viewed on mobile (or smaller browser window) it no longer shows as bold but shows the actual code instead.
Is this normal? Is there a way to fix it?
Here is the table in questions: https://openfin.co/compare/
Thanks!
Hi,
Open table.php and look for line:
$responsive_style .= ".avia-table-".self::$table_count." td:nth-of-type(".($counter + $responsive_style_nth_modifier)."):before { content: '".$row['content'][$counter]['content']."'; } ";
Replace it by this:
$responsive_style .= ".avia-table-".self::$table_count." td:nth-of-type(".($counter + $responsive_style_nth_modifier)."):before { content: '".strip_tags($row['content'][$counter]['content'])."'; } ";
Regards,
Josue
Thanks Josue!
I don’t suppose this is something I can move over to the child-theme is it?
Hey!
Best regards,
Josue
Thanks Josue! Excellent as always!
You are welcome, glad to help :)
Regards,
Josue