Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Jeff Starr

    (@specialk)

    You just need to restrict the width of the outermost element.

    You could use something like this:

    .wp-editor-container { width: 500px; }

    Just add that code to style.css or other stylesheet and adjust the width as needed to fit your design.

    Thread Starter kymora

    (@kymora)

    That didn’t work in either your css files or my theme css file.

    Plugin Author Jeff Starr

    (@specialk)

    You could also try hiding the overflow on the enclosing parent element:

    #user-submitted-posts { width: 100%; overflow: hidden; }

    basically the issue is CSS related.. it can take some experimenting to dial it in, but the form and everything else works fine. You just need to tweak the CSS to get the form to obey to the outermost-defined parent container.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Submission Form Outside Margins’ is closed to new replies.