parsiya / Hugo-Octopress

Port of the classic Octopress theme to Hugo
MIT License
155 stars 52 forks source link

Tables only have left borders #38

Closed parsiya closed 7 years ago

parsiya commented 7 years ago

The culprit is in the CSS. I have removed the right border to prevent it from being displayed when an overflow happens.

Change it back to border from border-left. See.

table,
th,
td
 {
    border-left: 1px solid black; /* remove the right border for when overflow happens */
    padding: 3px;
}