XF 1.4 "more option" editor reponsive

aana

Active member
Hi,

The editor on the bottom of the page is responsive. i would like to know how to set the "more option" in responsiv too. ( the edit more option and the "normal" more option )

or better one, with a size in %.

Can someone help me please ?
thx :)
 
Last edited:
Just to clarify, are you saying that on your site, the editor as in the screenshot below, is not responsive?

upload_2015-9-22_18-13-16.webp

As you can see here, it is by default.

This would lead me to believe that you may have a custom style that is preventing the editor from behaving correctly.
 
Hi, thx

i ma speaking about this one. When you click on "edit" then "more option". this editor can't be larger than a certain size. I would like to have the same comportement than the botom "post a replay" editor.
 

Attachments

  • edi.webp
    edi.webp
    24 KB · Views: 8
Really, that's just the standard way that XF forms behave, they have a max-width of 800px. Changing that globally may well be problematic, but if you wanted to change it specifically on that page, you could add the following to your EXTRA.css template:
Code:
 .thread_reply .xenForm
{
    max-width: 100%;
}
 
Top Bottom