RobinHood Well-known member Mar 12, 2012 #1 I'd like to remove the border from this css, only on the first post of every thread though. Does anyone know how I might be able to do that please? .messageList .message { border-top: 1px solid #D7E1FC; }
I'd like to remove the border from this css, only on the first post of every thread though. Does anyone know how I might be able to do that please? .messageList .message { border-top: 1px solid #D7E1FC; }
P Paul B XenForo moderator Staff member Mar 12, 2012 #2 Add this to EXTRA.css: Code: .messageList .message:first-child { border-top: 1px solid #D7E1FC; } That will apply to the first post on every page. Upvote 0 Downvote
Add this to EXTRA.css: Code: .messageList .message:first-child { border-top: 1px solid #D7E1FC; } That will apply to the first post on every page.
RobinHood Well-known member Mar 12, 2012 #3 Awesome, thank you Brogan The following code worked. Code: .messageList .message:first-child { border-top: none; } Upvote 0 Downvote
Awesome, thank you Brogan The following code worked. Code: .messageList .message:first-child { border-top: none; }