HenrikHansen Well-known member Oct 4, 2013 #1 Can anyone guide to how I (for certain nodes) can delete in 1. post only the user info box to the left so the text expands to full width?
Can anyone guide to how I (for certain nodes) can delete in 1. post only the user info box to the left so the text expands to full width?
P Paul B XenForo moderator Staff member Oct 4, 2013 #2 Add to EXTRA.css: Code: .node32 .messageUserInfo { display: none; } .node32 .message .messageInfo { margin-left: 0; } Change the 32 to the node ID. Repeat for any other nodes as required. Upvote 0 Downvote
Add to EXTRA.css: Code: .node32 .messageUserInfo { display: none; } .node32 .message .messageInfo { margin-left: 0; } Change the 32 to the node ID. Repeat for any other nodes as required.
HenrikHansen Well-known member Oct 4, 2013 #3 Change the 32 to the node ID. Repeat for any other nodes as required. Click to expand... Thanks a lot. And for 1. post only? Upvote 0 Downvote
Change the 32 to the node ID. Repeat for any other nodes as required. Click to expand... Thanks a lot. And for 1. post only?
P Paul B XenForo moderator Staff member Oct 4, 2013 #4 Oh, I missed that. Try this: Code: .node32 .messageList li:first-child .messageUserInfo { display: none; } .node32 .messageList li:first-child.message .messageInfo { margin-left: 0; } I'm not sure how that will work in all browsers so to be safe, the only way to be sure would be to edit the template and use a conditional statement with modified HTML. Upvote 0 Downvote
Oh, I missed that. Try this: Code: .node32 .messageList li:first-child .messageUserInfo { display: none; } .node32 .messageList li:first-child.message .messageInfo { margin-left: 0; } I'm not sure how that will work in all browsers so to be safe, the only way to be sure would be to edit the template and use a conditional statement with modified HTML.
HenrikHansen Well-known member Oct 4, 2013 #5 Thanks a lot. That is the best thing about XenForo, the fast and very professionel support. Upvote 0 Downvote