Skip to main content
Participant
February 22, 2017
Question

Creating Forms in Dreamweaver

  • February 22, 2017
  • 1 reply
  • 404 views

I'm creating an order form for rubber stamps. I need the form to display the font, size, centered, etc., as the customer inputs their information. Here's an example: http://www.vistaprint.com/studio.aspx?template=46024_267_749&ag=True&xnav=previews&xnid=button_30&rd=1&alt_doc_id=2CZZ9-74A47-4N1

Any help / direction would be appreciated.

Thanks,

Gary

    This topic has been closed for replies.

    1 reply

    Nancy OShea
    Community Expert
    Community Expert
    February 22, 2017

    Change your CSS code as noted below in css.caspx.

    .text-editor-wrapper .editable-field, .text-editor-wrapper .editable-field p, .text-editor-wrapper .editable-field span, .text-editor-wrapper .editable-field ol, .text-editor-wrapper .editable-field ul, .text-editor-wrapper .editable-field li, .text-editor-wrapper .editable-field div, .text-editor-wrapper .stylized-textfield {

        font-size: 12px !important;

        font-family: Arial !important;

        color: black !important;

        font-weight: normal !important;

        font-style: normal !important;

        text-align: left !important;

        text-align: center !important

        text-decoration: none !important;

        line-height: 19px;

    }

    Nancy O'Shea— Product User & Community Expert
    Legend
    February 22, 2017

    https://forums.adobe.com/people/Nancy+OShea  wrote

    Change your CSS code as noted below in css.caspx.

    .text-editor-wrapper .editable-field, .text-editor-wrapper .editable-field p, .text-editor-wrapper .editable-field span, .text-editor-wrapper .editable-field ol, .text-editor-wrapper .editable-field ul, .text-editor-wrapper .editable-field li, .text-editor-wrapper .editable-field div, .text-editor-wrapper .stylized-textfield {

        font-size: 12px !important;

        font-family: Arial !important;

        color: black !important;

        font-weight: normal !important;

        font-style: normal !important;

        text-align: left !important;

        text-align: center !important

        text-decoration: none !important;

        line-height: 19px;

    }

    Think its a bit more complex than that. OP wants to be able to present the user with some kind of interface which allows them to pick a typface, font size, drag it around etc.

    Ive not seen anything like that before. It looks like its been specially written.

    Nancy OShea
    Community Expert
    Community Expert
    February 22, 2017
    Nancy O'Shea— Product User & Community Expert