ENF Well-known member Jan 26, 2018 #2 Disable what? The notice? The forum closed message? Upvote 0 Downvote
CyanFlare Member Jan 26, 2018 #3 ENF said: Disable what? The notice? The forum closed message? Click to expand... Upvote 0 Downvote
P Paul B XenForo moderator Staff member Jan 26, 2018 #4 https://xenforo.com/community/resou...user-groups.358/updates#resource-update-17559 Upvote 0 Downvote
Bryan Active member Jan 26, 2018 #7 Add this to your extra.less template: Less: .structItemContainer > .structItem:first-child { display:none } .structItemContainer > .structItem { border-top:none !important } Upvote 0 Downvote
Add this to your extra.less template: Less: .structItemContainer > .structItem:first-child { display:none } .structItemContainer > .structItem { border-top:none !important }
CyanFlare Member Jan 26, 2018 #8 Bryan said: Add this to your extra.less template: Less: .structItemContainer > .structItem:first-child { display:none } .structItemContainer > .structItem { border-top:none } Click to expand... Thanks! Upvote 0 Downvote
Bryan said: Add this to your extra.less template: Less: .structItemContainer > .structItem:first-child { display:none } .structItemContainer > .structItem { border-top:none } Click to expand... Thanks!
Bryan Active member Jan 26, 2018 #9 I edited it since you quoted it to add the !important, you'll need to add that too. Upvote 1 Downvote
Bryan Active member Jan 26, 2018 #10 Actually, just add the: Less: .structItemContainer > .structItem:first-child { display:none } You'll have to suffer the thicker top border as removing it will remove it from between all the threads. Upvote 0 Downvote
Actually, just add the: Less: .structItemContainer > .structItem:first-child { display:none } You'll have to suffer the thicker top border as removing it will remove it from between all the threads.
F Freak Member Jun 1, 2018 #12 Bryan said: Add this to your extra.less template: Less: .structItemContainer > .structItem:first-child { display:none } .structItemContainer > .structItem { border-top:none !important } Click to expand... This seems to remove the ability to view the most recent reported post and the most recent conversation. They must use the same css class. Upvote 0 Downvote
Bryan said: Add this to your extra.less template: Less: .structItemContainer > .structItem:first-child { display:none } .structItemContainer > .structItem { border-top:none !important } Click to expand... This seems to remove the ability to view the most recent reported post and the most recent conversation. They must use the same css class.
M mikez006 Active member Oct 23, 2018 #13 This worked for me in case others need it. Code: .structItemContainer > .structItem[action*='post-thread']{ display: none; } html:not(.focus-grid) body[data-template="forum_list"] .p-body-pageContent .block-body.block-row{ padding: 12px; } Upvote 0 Downvote
This worked for me in case others need it. Code: .structItemContainer > .structItem[action*='post-thread']{ display: none; } html:not(.focus-grid) body[data-template="forum_list"] .p-body-pageContent .block-body.block-row{ padding: 12px; }