PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Quantity box on same row, HH misplaces and {date_ymd} not working.

  1. Johan Vidlund
    Member

    Forms works great but there are 3 issues I need help with. Errors seen here: http://www.nybroe.se/bestall-online/

    1. How can Qty field be placed after "Antal:" (meaning quantity in Swedish)

    2. Near the bottom HH, : and MM is misplaces. Tried css additions on related post. Not working.

    3. {date_ymd} is not showing date in emails. It shows {date_ymd}... Would like to show YYYY-MM-DD if possible.

    A 4th request. How get rid of the empty line above the price-row (Pris:) ?

    Any advice greatly appreciated :-)

    Posted 11 years ago on Monday August 27, 2012 | Permalink
  2. Johan Vidlund
    Member

    Hello, is anyone attending to these requests. Anyone of them? Would really appreciate any help resolve these issues. Two weeks and no response at all..?

    Posted 11 years ago on Thursday September 13, 2012 | Permalink
  3. It looks to me like the quantity field is already placed behind the "Antal"

    screenshot: http://bit.ly/SfqohZ

    your theme css file: http://www.nybroe.se/wp-content/uploads/headway/cache/general-89d6eba.css?ver=3.4.1 on line 1 has the following rule.

    [css]
    input[type="text"], input[type="password"], input[type="email"], textarea, select {
        -moz-box-sizing: border-box;
        background: none repeat scroll 0 0 #FFFFFF;
        border: 1px solid #CCCCCC;
        border-radius: 2px 2px 2px 2px;
        color: #777777;
        display: block;
        outline: medium none;
        padding: 6px 4px;
    }

    the "display:block" property being added to the input is causing the hours field and colon to be displayed incorrectly. If you remove that property, you'll see that it formats correctly.

    screenshot: http://bit.ly/Sfp4M4

    Next, the empty line above the price is the description field with a non-breaking space in it. If you're not using the description, then you can add the following CSS rule to the end of your theme stylesheet and it will hide the description field all together.

    [css]
    body .gform_wrapper ul li.gfield_price div.gfield_description {
    	display: none
    }

    screenshot: http://bit.ly/PvkTz4

    We will have to test the email formatting thing and get back to you.. this should cover your other requests though.

    Posted 11 years ago on Thursday September 13, 2012 | Permalink