Title: Contact Box
Last modified: November 21, 2016

---

# Contact Box

 *  Resolved [babussell2](https://wordpress.org/support/users/babussell2/)
 * (@babussell2)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/contact-box/)
 * Hello there! I am having a small issue with the contact box on the left-side 
   of the contact page.
 * Nothing is wrong with it, except, I would like the boxes to be re-ordered in 
   the order of; President, Office Address, Phone, and then Email. However, it is
   ordered differently with the theme. Is there any way that I can change the order?
 * The page can be seen below.
 * [http://franchisesociety.com/contact-us/](http://franchisesociety.com/contact-us/)

Viewing 4 replies - 1 through 4 (of 4 total)

 *  [ThemeSumo](https://wordpress.org/support/users/themesumo/)
 * (@themesumo)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/contact-box/#post-8464929)
 * It’s referencing _vzforms_ which I don’t recognize and can’t find any information
   about it.
 * I do notice that you’re using a temaplte file for your _Contact Page_, open this
   file up using your text editor to see if it’s referencing a plugin or if it’s
   just a hard coded form that you can freely re-organize as needed.
 * Hope this helps.
 *  Thread Starter [babussell2](https://wordpress.org/support/users/babussell2/)
 * (@babussell2)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/contact-box/#post-8465520)
 * This is the code I found in the contact-page template file.
 *     ```
       <div class="container container_12">
   
       		<?php if( !get_option('vz_options_ct_map_disabled') && get_option('vz_options_ct_lat_lon') ) :
       			if( substr( get_option('vz_options_ct_lat_lon') ,0,7 ) != '<iframe' ) : ?>
       				<div class="grid_12" style="margin-bottom:20px">
       					<iframe width="940" scrolling="no" height="202" frameborder="0" 
       					src="https://www.google.com/maps?split=0&t=m&q=<?php echo get_option('vz_options_ct_lat_lon'); ?>&z=16&output=embed&iwloc=near" 
       					marginwidth="0" marginheight="0"></iframe>
       				</div>
       			<?php else : ?>
       				<div class="grid_12" style="margin-bottom:20px">
       					<?php echo get_option('vz_options_ct_lat_lon'); ?>
       				</div>
       			<?php endif;
       		endif; ?>
   
       		<div class="sidebar grid_4 <?php echo ($body_order[0] == 'sidebar') ? 'alignleft' : 'alignright'; ?>">
       			<div class="widget rounded_2 hardcoded_contact">
       				<h1><?php echo get_option('vz_options_ct_side_title', __('Information','vz_front_terms') ); ?></h1>
   
       				<div class="information">
       					<span class="alignleft phone"></span>
       					<label><?php echo get_option('vz_options_ct_phone_label', __('Phone','vz_front_terms') ); ?></label>
       					<p> <?php echo get_option('vz_options_ct_phone'); ?> </p>
       					<div class="clear"></div>
       				</div>
   
       				<div class="information">
       					<span class="alignleft address"></span>
       					<label><?php echo get_option('vz_options_ct_address_label', __('Office Address','vz_front_terms') ); ?></label>
       					<p> <?php echo get_option('vz_options_ct_address'); ?> </p>
       					<div class="clear"></div>
       				</div>
   
       				<div class="information">
       					<span class="alignleft email"></span>
       					<label><?php echo get_option('vz_options_ct_email_label', __('Email','vz_front_terms') ); ?></label>
       					<p> <?php echo get_option('vz_options_ct_email'); ?> </p>
       					<div class="clear"></div>
       				</div>
   
       				<div class="information">
       					<span class="alignleft staff"></span>
       					<label><?php echo get_option('vz_options_ct_staff_label', __('Public relations','vz_front_terms') ); ?></label>
       					<p> <?php echo get_option('vz_options_ct_staff'); ?> </p>
       					<div class="clear"></div>
       				</div>
   
       			</div>
       		</div>
   
       		<!-- BEGIN CONTENT  -->
       		<div class="content alignleft">
   
       			<?php if(have_posts()) : the_post(); ?>
   
       				<div class="post rounded_2 alignleft grid_8">
   
       					<h1 class="title"> <?php the_title(); ?> </h1>
   
       					<div class="post-content contact-page"> 
       						<?php the_content(); ?> 
   
       						<form class="vzforms_ajax" id="vzform_">
       							<div class="alignleft half">
       								<label><?php _e('Full name','vz_front_terms'); ?>:</label> 
       								<input type="text" onblur="this.placeholder = '<?php _e('Your name','vz_front_terms'); ?>'" onfocus="this.placeholder = '' " class="rounded_2 vzinput_req" placeholder="<?php _e('Your name','vz_front_terms'); ?>" name="fullname">
       							</div>
   
       							<div class="alignleft half">
       								<label><?php _e('E-mail address','vz_front_terms'); ?>:</label> 
       								<input type="email" onblur="this.placeholder = '<?php _e('Your email','vz_front_terms'); ?>'" onfocus="this.placeholder = '' " class="rounded_2 vzinput_req" placeholder="<?php _e('Your email','vz_front_terms'); ?>" name="emailaddress">
       							</div>
   
       							<label><?php _e('Subject','vz_front_terms'); ?>:</label> 
       							<input type="text" onblur="this.placeholder = '<?php _e('Subject','vz_front_terms'); ?>'" onfocus="this.placeholder = '' " class="rounded_2" placeholder="<?php _e('Subject','vz_front_terms'); ?>" name="subject">
       							<label><?php _e('Your message','vz_front_terms'); ?>:</label> 
       							<textarea onblur="this.placeholder = '<?php _e('Your message','vz_front_terms'); ?>'" onfocus="this.placeholder = '' " class="rounded_2 vzinput_req" placeholder="<?php _e('Your message','vz_front_terms'); ?>" name="yourmessage"></textarea>
   
       							<div class="clear"></div>
       							<input type="submit" class="main" value="<?php _e('Send','vz_front_terms'); ?>">
       							<input type="reset" class="second" value="<?php _e('Cancel','vz_front_terms'); ?>">
       						</form>
   
       						<div class="clear"></div>
       					</div>
   
       				</div>
   
       			<?php endif; ?>
   
       		</div>
       		<!-- END CONTENT  -->
       ```
   
 *  [ThemeSumo](https://wordpress.org/support/users/themesumo/)
 * (@themesumo)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/contact-box/#post-8470867)
 *     ```
       <div class="information">
           <span class="alignleft phone"></span>
           <label><?php echo get_option('vz_options_ct_phone_label', __('Phone','vz_front_terms') ); ?></label>
           <p> <?php echo get_option('vz_options_ct_phone'); ?> </p>
           <div class="clear"></div>
       </div>
   
       <div class="information">
           <span class="alignleft address"></span>
           <label><?php echo get_option('vz_options_ct_address_label', __('Office Address','vz_front_terms') ); ?></label>
           <p> <?php echo get_option('vz_options_ct_address'); ?> </p>
           <div class="clear"></div>
       </div>
   
       <div class="information">
           <span class="alignleft email"></span>
           <label><?php echo get_option('vz_options_ct_email_label', __('Email','vz_front_terms') ); ?></label>
           <p> <?php echo get_option('vz_options_ct_email'); ?> </p>
           <div class="clear"></div>
       </div>
   
       <div class="information">
           <span class="alignleft staff"></span>
           <label><?php echo get_option('vz_options_ct_staff_label', __('Public relations','vz_front_terms') ); ?></label>
           <p> <?php echo get_option('vz_options_ct_staff'); ?> </p>
           <div class="clear"></div>
       </div>
       ```
   
 * Move each element into the order you would like, each one begins with `<div class
   ="information">`.
    -  This reply was modified 9 years, 5 months ago by [ThemeSumo](https://wordpress.org/support/users/themesumo/).
 *  Thread Starter [babussell2](https://wordpress.org/support/users/babussell2/)
 * (@babussell2)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/contact-box/#post-8470961)
 * You’re a life saver. Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Contact Box’ is closed to new replies.

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)
 * [formatting](https://wordpress.org/support/topic-tag/formatting/)
 * [forms](https://wordpress.org/support/topic-tag/forms/)
 * [html](https://wordpress.org/support/topic-tag/html/)
 * [php](https://wordpress.org/support/topic-tag/php/)
 * [Themes](https://wordpress.org/support/topic-tag/themes/)

 * 4 replies
 * 2 participants
 * Last reply from: [babussell2](https://wordpress.org/support/users/babussell2/)
 * Last activity: [9 years, 5 months ago](https://wordpress.org/support/topic/contact-box/#post-8470961)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
