Table outline not appearing?
-
I’ve tried to put in a table via html, but the outline of each column and row isn’t showing up. It’s there when I put it all in (in the admin dashboard) but when I publish, it doesn’t show – so it’s all a jumbled mess. The link is below, if anyone could let me know what I’m doing wrong. Thanks.
-
I see thin grey lines between each table row at the moment, and the table is quite easy to read. Do you see them?
The simplest way to style table borders is by using CSS code, which would require our Custom Design upgrade.
Otherwise, you could try experimenting a table-building tool like this one to apply the necessary border code to each individual cell. Before inputting the entire table, you could try a few rows to be sure you get the effect you want before adding all your data.
Just let me know if you need further help.
-
Hey, thanks. I tried the table-building tool you suggested and it looks great, until I hit publish. http://cinematicdisturbance.com/206-2/ In the edit mode, I can see the inner-grid, with a black outline separating each column/row. But when I publish, it’s just all red with no outline or inner grid.
-
Without the Custom Design upgrade, it looks like you’d need to manually add a border style to each table cell/td tag individually. You can add a 1-pixel black border by using this code, for example:
border: 1px solid #000;So if your current opening td tag looks like this now, for example:
<td style="background-color:#ee2600;padding:5px;">You’d edit to add the new code like this:
<td style="background-color:#ee2600;padding:5px;border: 1px solid #000;">Just let me know if you need further help.
- The topic ‘Table outline not appearing?’ is closed to new replies.