Plugin Author
finnj
(@finnj)
I will try and look into it – It seems like it is the editor that causes the problems.
I did a test, and resizing seems to work from the admin interface, so I believe it has something to do with CSS (which I am not very good at…)
Ok, thanks for the quick reply. Here are 2 screen shots from an old iPhone 3g.
Picture 1
Picture 2
The website I am setting up is for a project in Africa. The most common screen resolution down here is 320X480. (same as the iPhone 3g)
When I am using tablets with a resolution of 768X1024 all the forms stays within the frame.
I took some time going through the CSS, and I think I got lucky. The editor-form itself is actually set to a min. of 200px which should be fine for pretty much any mobile device, but in the frontier-post.css I found that the title-field was set to 400px causing it to break out of the theme’s frames and making the screen “wider”. After that, the editor form will also follow and obtain the same width as the title form.
So in order to fix the problem just edit the following piece of code within the frontier-post.css file
#frontier_post_fieldset_title {
float: left !important;
min-width: 400px !important;
}
Simply change the min-width from 400px to 200px and the entire post-page with all its forms will now be responsive even on very low resolution screens.
NB: I tried to bring the min. width of both the title and editor form down to 150px, but due to the shape and size of the buttons within the editor it does not look nice. So 200px is the lowest you can go without having to redesign the editor.
Plugin Author
finnj
(@finnj)
Thanks,
You can copy the frontier-post.css to you child theme, and make the changes.
See this: http://wpfrontier.com/frontier-post-templates-css/
Plugin Author
finnj
(@finnj)
I will mark this as resolved, let me know if you disagree