XF 1.5 Size of the text field of the visual editor

Enay

Member
How to increase the size of the text field of the visual editor?
 

Attachments

  • 2016-10-07_08-30-46.webp
    2016-10-07_08-30-46.webp
    28.8 KB · Views: 17
@Pacco

I'm not a programmer, so I do not know whether it's right or not, but here is an alternative version:


Code:
.xenForm {
    max-width: 1600px;   
}
.xenForm .ctrlUnit > dd {
    padding-left: 100px;         
}
.xenForm .ctrlUnit > dt {
    position: relative;
    right: 0px;
    left: 100px;
    top: 0px;
    bottom: 0px;   
}
 
Top Bottom