[tw5] Re: Single edge table

2021-04-23 Thread Xabriña
Thank you very much Brian !!! You have made my day. Greetings. El viernes, 23 de abril de 2021 a las 20:40:26 UTC+2, Brian Radspinner escribió: > try... > > > table.lyrics, > table.lyrics tr, > table.lyrics tr td { border: none; padding: 10px 20px; } > > table.lyrics tr td.trans {

[tw5] Re: Single edge table

2021-04-23 Thread Brian Radspinner
try... table.lyrics, table.lyrics tr, table.lyrics tr td { border: none; padding: 10px 20px; } table.lyrics tr td.trans { border-left: 1px solid #000; } The TD element (table data) is what holds the text, so adjust the padding on those elements. If just want the translation spacing to

[tw5] Re: Single edge table

2021-04-23 Thread Xabriña
I tried the following syntax without success: table.lyrics, table.lyrics tr, table.lyrics tr td { border: none; } table.lyrics tr td.trans { border-left: 2px solid green; } padding: 10px 20px; } El viernes, 23 de abril de 2021 a las 19:37:53 UTC+2, Xabriña escribió: > Thank you!!! > > It's

[tw5] Re: Single edge table

2021-04-23 Thread Xabriña
Thank you!!! It's what I was looking for. How could you make the two texts separate from the center line? El viernes, 23 de abril de 2021 a las 18:25:50 UTC+2, Brian Radspinner escribió: > You can start with this code to play around... > > > > > > > Original lyrics go here > > > >

[tw5] Re: Single edge table

2021-04-23 Thread Brian Radspinner
You can start with this code to play around... Original lyrics go here Translation goes here table.lyrics, table.lyrics tr, table.lyrics tr td { border: none; } table.lyrics tr td.trans { border-left: 1px solid #000; } On Friday, April 23, 2021 at 9:00:38 AM UTC-7 Xabriña wrote: >