giora Hi there Is there a way to create border or separator between columns like in here: https://tinyurl.com/ybs9kj2n Thanks Best Regards, --Giora
jvstratum Hi, Currently this is not possible. It could be a nice feature though. For now th eonly thing you can do is to add custom css.
giora I have created a Block HTML id : main-content, then I added custom style sheet : main-content .td { border: 1px solid #303E46; } What am I doing wrong? Thanks Giora
jvstratum Hi, When you view the html of the block you see that it is using th instead of td. Also, you need a # for id's and th or td are not prefixed with a dot. #main-content th { border: 1px solid #303E46; }