R Ruh Active member May 22, 2023 #1 Hello What is the horizontal line css code? Attachments themes.webp 17.4 KB · Views: 8 them2.webp 18.4 KB · Views: 8
Solution Davyc May 22, 2023 Code: .structItem { display: table; table-layout: fixed; border-collapse: collapse; border-top: 1px solid #e7e7e7; list-style: none; margin: 0; padding: 0; width: 100%; } That's the whole shebang for the item you're looking for - you will only want the border-top part to make changes and add to your extra.less file. Code: .structItem { border-top: 1px solid #e7e7e7; }
Code: .structItem { display: table; table-layout: fixed; border-collapse: collapse; border-top: 1px solid #e7e7e7; list-style: none; margin: 0; padding: 0; width: 100%; } That's the whole shebang for the item you're looking for - you will only want the border-top part to make changes and add to your extra.less file. Code: .structItem { border-top: 1px solid #e7e7e7; }
Davyc Well-known member May 22, 2023 #2 Code: .structItem { display: table; table-layout: fixed; border-collapse: collapse; border-top: 1px solid #e7e7e7; list-style: none; margin: 0; padding: 0; width: 100%; } That's the whole shebang for the item you're looking for - you will only want the border-top part to make changes and add to your extra.less file. Code: .structItem { border-top: 1px solid #e7e7e7; } Upvote 0 Downvote Solution
Code: .structItem { display: table; table-layout: fixed; border-collapse: collapse; border-top: 1px solid #e7e7e7; list-style: none; margin: 0; padding: 0; width: 100%; } That's the whole shebang for the item you're looking for - you will only want the border-top part to make changes and add to your extra.less file. Code: .structItem { border-top: 1px solid #e7e7e7; }