The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Making a post reply

4 posters

Go down

Solved Making a post reply

Post by dad2paisley November 1st 2023, 4:07 am

Why does your post reply and new post goes to middle of the reply box?
https://everythinggreyhound.forumotion.com


Last edited by dad2paisley on November 2nd 2023, 5:09 pm; edited 1 time in total
dad2paisley
dad2paisley
Forumember

Male Posts : 397
Reputation : 7
Language : english

http://everythinggreyhound.forumotion.com/

Back to top Go down

Solved Re: Making a post reply

Post by skouliki November 1st 2023, 6:27 am

Hello

I have this issue with iphone 12 pro ( reply, edit and new thread)

color post - Making a post reply Img_3011

It doesn't happen with laptops and it doesn't happen with iphone 8
Can you inform me which device you are using please
I have already mentioned this to our technicians some time ago but i think it happens only with phones
skouliki
skouliki
Manager
Manager

Female Posts : 15135
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: Making a post reply

Post by Razor12345 November 1st 2023, 9:28 am

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.

Code:
@media (max-width: 450px) {
  .sceditor-container iframe, .sceditor-container textarea {
  max-width: 724px !important;
}
 
#message-box textarea {
  max-width: 724px !important;
}
}


color post - Making a post reply Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1464
Reputation : 262
Language : Ukr, Rus, Eng
Location : Ukraine

skouliki likes this post

Back to top Go down

Solved Re: Making a post reply

Post by skouliki November 1st 2023, 9:33 am

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
skouliki
skouliki
Manager
Manager

Female Posts : 15135
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

TonnyKamper likes this post

Back to top Go down

Solved Re: Making a post reply

Post by dad2paisley November 1st 2023, 5:21 pm

I am on my MacBook Air when I having this issue.
dad2paisley
dad2paisley
Forumember

Male Posts : 397
Reputation : 7
Language : english

http://everythinggreyhound.forumotion.com/

Back to top Go down

Solved Re: Making a post reply

Post by Razor12345 November 1st 2023, 6:37 pm

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;
}


color post - Making a post reply Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1464
Reputation : 262
Language : Ukr, Rus, Eng
Location : Ukraine

Back to top Go down

Solved Re: Making a post reply

Post by dad2paisley November 1st 2023, 6:44 pm

didn't work
dad2paisley
dad2paisley
Forumember

Male Posts : 397
Reputation : 7
Language : english

http://everythinggreyhound.forumotion.com/

Back to top Go down

Solved Re: Making a post reply

Post by SLGray November 2nd 2023, 12:40 am

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
Add what?


color post - Making a post reply Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51493
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: Making a post reply

Post by dad2paisley November 2nd 2023, 2:16 am

SLGray wrote:
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
Add what?

Now it's doing the same thing here in the middle of the post box.
dad2paisley
dad2paisley
Forumember

Male Posts : 397
Reputation : 7
Language : english

http://everythinggreyhound.forumotion.com/

Back to top Go down

Solved Re: Making a post reply

Post by skouliki November 2nd 2023, 7:33 am

yes this code doesn't fix the issue
still is in the middle
skouliki
skouliki
Manager
Manager

Female Posts : 15135
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: Making a post reply

Post by Razor12345 November 2nd 2023, 11:57 am

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

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;
}




color post - Making a post reply Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1464
Reputation : 262
Language : Ukr, Rus, Eng
Location : Ukraine

TonnyKamper likes this post

Back to top Go down

Solved Re: Making a post reply

Post by dad2paisley November 2nd 2023, 5:09 pm

its working now thanks
dad2paisley
dad2paisley
Forumember

Male Posts : 397
Reputation : 7
Language : english

http://everythinggreyhound.forumotion.com/

Back to top Go down

Solved Re: Making a post reply

Post by Razor12345 November 2nd 2023, 5:36 pm

You are welcome!

Problem solved & topic archived.
Please read our forum rules: ESF General Rules


color post - Making a post reply Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1464
Reputation : 262
Language : Ukr, Rus, Eng
Location : Ukraine

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum