Hi, I used the html code <center> to center my text and image content in the table element but the <center> code shows up when I view the page on a mobile device.
Can you help troubleshoot how to hide this? Thanks!
Hi covertross!
HTML within the table items isn’t supported. The way the theme outputs the mobile tables is that it rebuilds the raw data into a new table.
You can instead target the table items and style/center them with css or the table options. Ex:
#top.page-id-2805 .avia-table-1 td {
text-align: center;
}
Which targets that specific page by its ID and then that table.
Best regards,
Devin