P Paul B XenForo moderator Staff member Feb 23, 2015 #2 EXTRA.css: Code: .thread_reply .xenForm { max-width: 100% } Upvote 0 Downvote
Amaury Well-known member Feb 23, 2015 #3 Brogan said: EXTRA.css: Code: .thread_reply .xenForm { max-width: 100% } Click to expand... Thanks, Paul! Upvote 0 Downvote
Brogan said: EXTRA.css: Code: .thread_reply .xenForm { max-width: 100% } Click to expand... Thanks, Paul!
Amaury Well-known member May 15, 2015 #4 @Brogan, I'm not sure why and I'm not sure when it started--I first noticed it yesterday--but your code doesn't seem to be working anymore. I even tried adding !important to no avail: Upvote 0 Downvote
@Brogan, I'm not sure why and I'm not sure when it started--I first noticed it yesterday--but your code doesn't seem to be working anymore. I even tried adding !important to no avail:
Sunka Well-known member May 15, 2015 #5 You add code only for reply to thread, no for create thread (your screenshot is for create new thread). Try this: Code: .thread_reply .xenForm { max-width: 80% } .thread_create .xenForm { max-width: 80% } Upvote 0 Downvote
You add code only for reply to thread, no for create thread (your screenshot is for create new thread). Try this: Code: .thread_reply .xenForm { max-width: 80% } .thread_create .xenForm { max-width: 80% }
Amaury Well-known member May 15, 2015 #6 Please hit me in the head with a frying pan. Upvote 0 Downvote
P Paul B XenForo moderator Staff member May 15, 2015 #7 More compact: Code: .thread_create .xenForm, .thread_reply .xenForm, { max-width: 100% } Upvote 0 Downvote
Amaury Well-known member May 16, 2015 #8 Brogan said: More compact: Code: .thread_create .xenForm, .thread_reply .xenForm, { max-width: 100% } Click to expand... Thanks, Brogan. Looks like I also need it for editing posts, and inspecting the element, it looks like it would be .post_edit .xenForm. Is that correct? Upvote 0 Downvote
Brogan said: More compact: Code: .thread_create .xenForm, .thread_reply .xenForm, { max-width: 100% } Click to expand... Thanks, Brogan. Looks like I also need it for editing posts, and inspecting the element, it looks like it would be .post_edit .xenForm. Is that correct?
P Paul B XenForo moderator Staff member May 16, 2015 #9 Possibly. Use your browser inspector to check the template name and give it a try. Upvote 0 Downvote
Amaury Well-known member May 16, 2015 #10 Brogan said: Possibly. Use your browser inspector to check the template name and give it a try. Click to expand... Yup, that worked. Upvote 0 Downvote
Brogan said: Possibly. Use your browser inspector to check the template name and give it a try. Click to expand... Yup, that worked.
Amaury Well-known member May 23, 2015 #11 So I came across two more that I needed: conversation_add and conversation_reply. I figured I'd check if there's anything else that I'm missing. Upvote 0 Downvote
So I came across two more that I needed: conversation_add and conversation_reply. I figured I'd check if there's anything else that I'm missing.