Making a post reply
4 posters
Page 1 of 1
Making a post reply
Why does your post reply and new post goes to middle of the reply box?
https://everythinggreyhound.forumotion.com
https://everythinggreyhound.forumotion.com
Last edited by dad2paisley on November 2nd 2023, 5:09 pm; edited 1 time in total
Re: Making a post reply
Good morning!
Please specify which device you are using to view the forum. In this topic, we discussed the same problem, only with a tablet
@skouliki can you check this CSS code for the iPhone? Unfortunately, I only have the ability to check through the developer tool for this code.
Please specify which device you are using to view the forum. In this topic, we discussed the same problem, only with a tablet
@skouliki can you check this CSS code for the iPhone? Unfortunately, I only have the ability to check through the developer tool for this code.
- Code:
@media (max-width: 450px) {
.sceditor-container iframe, .sceditor-container textarea {
max-width: 724px !important;
}
#message-box textarea {
max-width: 724px !important;
}
}
Razor12345- Support Moderator
- Posts : 1588
Reputation : 268
Language : Ukr, Rus, Eng
Location : Ukraine
skouliki likes this post
Re: Making a post reply
for me, the issue is on this forum and i think the member is speaking about here
@SLGray must add this to the CSS then i will check it thanks
@SLGray must add this to the CSS then i will check it thanks
TonnyKamper likes this post
Re: Making a post reply
dad2paisley wrote:I am on my MacBook Air when I having this issue.
Have you tried using the code from the message I sent in the post above?
- Code:
.sceditor-container iframe, .sceditor-container textarea {
max-width: 1040px !important;
}
#message-box textarea {
max-width: 1040px !important;
}
Razor12345- Support Moderator
- Posts : 1588
Reputation : 268
Language : Ukr, Rus, Eng
Location : Ukraine
Re: Making a post reply
Add what?skouliki wrote:for me, the issue is on this forum and i think the member is speaking about here
@SLGray must add this to the CSS then i will check it thanks
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Making a post reply
SLGray wrote:Add what?skouliki wrote:for me, the issue is on this forum and i think the member is speaking about here
@SLGray must add this to the CSS then i will check it thanks
Now it's doing the same thing here in the middle of the post box.
Re: Making a post reply
I did a little research on your question. There are a few options on how to resolve the incorrect textarea handling.
Unfortunately, I can't test these codes specifically for your case, but in some problem cases that I can reproduce, these codes have helped me:
AP - Display - Colors&CSS - CSS Stylesheet
The -webkit- prefix indicates that the rules only apply to iOS products
If the code doesn't help, try removing the -webkit- prefix:
Unfortunately, I can't test these codes specifically for your case, but in some problem cases that I can reproduce, these codes have helped me:
AP - Display - Colors&CSS - CSS Stylesheet
- Code:
.sceditor-container iframe, .sceditor-container textarea {
box-sizing: border-box;
-webkit-height: auto;
-webkit-max-height: 200px;
-webkit-width: 100%;
-webkit-max-width: 755px;
}
#message-box textarea {
box-sizing: border-box;
-webkit-height: auto;
-webkit-max-height: 200px;
-webkit-width: 100%;
-webkit-max-width: 755px;
}
The -webkit- prefix indicates that the rules only apply to iOS products
If the code doesn't help, try removing the -webkit- prefix:
- Code:
.sceditor-container iframe, .sceditor-container textarea {
box-sizing: border-box;
height: auto;
max-height: 200px;
width: 100%;
max-width: 755px;
}
#message-box textarea {
box-sizing: border-box;
height: auto;
max-height: 200px;
width: 100%;
max-width: 755px;
}
Razor12345- Support Moderator
- Posts : 1588
Reputation : 268
Language : Ukr, Rus, Eng
Location : Ukraine
TonnyKamper likes this post
Razor12345- Support Moderator
- Posts : 1588
Reputation : 268
Language : Ukr, Rus, Eng
Location : Ukraine
Similar topics
» Allow post making but not Topic Making?
» Post Reply post disappearing
» making the Quick reply avilable for guests
» Why does this happen with everything I post a reply to
» making the quick reply avilable for guests in Modern BB
» Post Reply post disappearing
» making the Quick reply avilable for guests
» Why does this happen with everything I post a reply to
» making the quick reply avilable for guests in Modern BB
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum