Making a post reply Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

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.
4 posters

    Making a post reply

    dad2paisley
    dad2paisley
    Forumember


    Male Posts : 397
    Reputation : 7
    Language : english

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


    Female Posts : 15310
    Reputation : 1705
    Language : English,Greek
    Location : Greece

    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)

    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

    Razor12345
    Razor12345
    Support Moderator
    Support Moderator


    Male Posts : 1575
    Reputation : 266
    Language : Ukr, Rus, Eng
    Location : Ukraine

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



    Making a post reply Screen51

    skouliki likes this post

    skouliki
    skouliki
    Manager
    Manager


    Female Posts : 15310
    Reputation : 1705
    Language : English,Greek
    Location : Greece

    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

    TonnyKamper likes this post

    dad2paisley
    dad2paisley
    Forumember


    Male Posts : 397
    Reputation : 7
    Language : english

    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.
    Razor12345
    Razor12345
    Support Moderator
    Support Moderator


    Male Posts : 1575
    Reputation : 266
    Language : Ukr, Rus, Eng
    Location : Ukraine

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



    Making a post reply Screen51
    dad2paisley
    dad2paisley
    Forumember


    Male Posts : 397
    Reputation : 7
    Language : english

    Solved Re: Making a post reply

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

    didn't work
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51497
    Reputation : 3523
    Language : English
    Location : United States

    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?



    Making a post reply Slgray10

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


    Male Posts : 397
    Reputation : 7
    Language : english

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


    Female Posts : 15310
    Reputation : 1705
    Language : English,Greek
    Location : Greece

    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

    Razor12345
    Razor12345
    Support Moderator
    Support Moderator


    Male Posts : 1575
    Reputation : 266
    Language : Ukr, Rus, Eng
    Location : Ukraine

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





    Making a post reply Screen51

    TonnyKamper likes this post

    dad2paisley
    dad2paisley
    Forumember


    Male Posts : 397
    Reputation : 7
    Language : english

    Solved Re: Making a post reply

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

    its working now thanks
    Razor12345
    Razor12345
    Support Moderator
    Support Moderator


    Male Posts : 1575
    Reputation : 266
    Language : Ukr, Rus, Eng
    Location : Ukraine

    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



    Making a post reply Screen51