Styling of tables

Posted in: Newspaper
Post count: 16

I got an issue by styling my tables. I’m not good at coding but I added the CSS:
th {
border-width: 1px;
border-color: #d8d5d4;
}

(btw: why th and not td)

But my tables still don’t have a border. Like here:
https://www.dropbox.com/s/x9vqw73o3mf74f8/table.jpg?dl=0

Link to article: http://viel-unterwegs.de/copenhagen-card-lohnt-sich-sparen/

Post count: 9544

th = table header
tr = table row
td = table cell

You may want to do a search online for how CSS3 tables work.

Example:

table, th, td {
    border: 1px solid black;
 } 

Not sure, but the theme might support Bootstrap 3 common table styles like so:

class="table table-bordered"

ref: http://getbootstrap.com/css/#tables

Hope that helped 🙂

  • This reply was modified 11 years by simchris.
Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.