XF 2.1 Forumhome horizontal line border CSS?

Ruh

Active member
Hello

What is the horizontal line css code?
 

Attachments

  • themes.webp
    themes.webp
    17.4 KB · Views: 8
  • them2.webp
    them2.webp
    18.4 KB · Views: 8
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;
}
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;
}
 
Solution
Back
Top Bottom