Hello
Hello,
Should the markdown table syntax work in notes?
When I add
| First Header | Second Header |
| ------------- | ------------- |
| First Cell | Second Cell |
| First Cell | Second Cell |
After adding that note, it looks like
First Header Second Header
Second Cell
Second Cell
Am i doing it wrong somehow?
Should the markdown table syntax work in notes?
When I add
| First Header | Second Header |
| ------------- | ------------- |
| First Cell | Second Cell |
| First Cell | Second Cell |
After adding that note, it looks like
First Header Second Header
Second Cell
Second Cell
Am i doing it wrong somehow?
Hello,
ReplyDeleteI just tried it in one of my lists - works just fine. Do you probably have a custom CSS style, which could break the first cell?
Regards,
Hello Timo, can I ask you to send me a screenshot of how it looks in your list? (along with OS and browser details, please). Thanks!
ReplyDeleteThanks for the fast answers, i had custom css to hide avatars from comments
ReplyDelete.commentTable tr td:first-of-type {
display: none;
}
When i removed that, tables work just fine (though of course my avatar reappeared :()
Is there a way to keep avatar, not show it in comments while tables still work?
Thanks again
Hello Timo,
ReplyDeleteCould you please try CSS like
.commentTable > tr > td:first-of-type {
display: none;
}
It should work.
Regards,
Hello,
ReplyDeleteJust stating the obvious here, but my understanding of CSS is minimal at the best :). Kirill, that still shows avatar?
But it's not a big deal
thanks
I'm sorry, I haven't verified the solution :(
ReplyDeleteThe correct CSS is
.authorPic {display: none;}
ul.comments div.coreNote {margin-left: 0}
Hello, I've just added this avatar CSS code snippet to our public collection :) https://checkvist.com/checklists/486715-checkvist-customization-css-samples#task_21275879
ReplyDeleteGlad it's growing and thanks for the suggestion!
Perfect!
ReplyDeleteThanks
.timppa