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.

Sub-labels in address before input

  1. Hi.

    I would like to have my address sub labels positioned before the actual input field. Is there a way to modify this or is the only way via fiddling with css?

    This is temp url and will expire at some point.
    http://ombold.dk/temp/kontakt/tilmelding-til-staevner/

    Thanks

    Posted 13 years ago on Monday September 13, 2010 | Permalink
  2. There's no built-in way to change this right now. You can either use some CSS to manipulate them, or you could use jQuery to rearrange the output. Something like this..

    <script type="text/javascript">
    $(document).ready(function() {
    	jQuery('label#input_1_4.3_label').before('input#input_1_4_3');
    	jQuery('label#input_1_4.5_label').before('input#input_1_4_5');
    });
    </script>

    even using the jQuery method, you'd have to adjust the CSS (margins/padding) to make it look just right.

    Posted 13 years ago on Monday September 13, 2010 | Permalink
  3. Hi Kevin,

    alright, thanks for the quick support. :-)

    Posted 13 years ago on Monday September 13, 2010 | Permalink