I am using the addresses module and have the user input an address with country, state, city, address, etc. The format of the form depends on the screen size because

    $form['multiple']['multiple_number'] = array(
      '#type' => 'textfield',
      '#size' => 5,
      '#field_prefix' => t('Show') .' ',
      '#field_suffix' => t(' values,'),
      '#default_value' => $options['multiple']['multiple_number'],
      '#prefix' => '<div class="container-inline">',
    );

Forces all users to use an inline container class and makes the input form pretty ugly.

Is there a way to allow me to set up a choice for the form to use block container class so each field item would be displayed on a separate line?

Comments

karens’s picture

Status: Active » Postponed (maintainer needs more info)

The form you have in your post above is the form element used in the ajax Views field settings form -- it's the place where you can choose how to group multiple values in your view. That it isn't a place anyone would input an address value.

I think you're confusing that form with something else.

karens’s picture

Status: Postponed (maintainer needs more info) » Fixed

Very old report, no response, assuming fixed.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.