Multi Contact Layout
Required JavaScript jQuery files
- None required
CORPORATE OFFICE
Phoenix Aircraft Leasing Pte Ltd20-04 Wisma Atria
435 Orchard Road,
Singapore 238877
Telephone: (65)-6222 5481
Fax: (65)-6222 5486
Email:
sales@phoenixaircraftleasing.com
palas@singnet.com.sg
CSS
/*--------------------------------------------------------------------------
Two wrappers make up available width of 760px
--------------------------------------------------------------------------*/
#contact-wrapper {
width: 520px;
border: 1px red dotted;
float: left;
}
#office-wrapper {
width: 240px;
border: 1px red dotted;
float: left;
}
/*--------------------------------------------------------------------------
Div for each contact / member of staff
Note .clear also applied to div in event contact block to be on the left
--------------------------------------------------------------------------*/
.contact {
float: left;
width: 240px;
padding-right: 0px;
padding-bottom: 10px;
margin-right: 20px;
margin-bottom: 15px;
font-family: arial;
background: #e2e2e2;
}
/*--------------------------------------------------------------------------
Headers for contacts
--------------------------------------------------------------------------*/
h2 {
font-size: 18px;
margin: 0;
margin-top: 15px;
}
h3 {
font-size: 14px;
margin: 2px;
}
/*--------------------------------------------------------------------------
Photograph for each contact
--------------------------------------------------------------------------*/
div.contact img {
float: left;
border: 1px #A7A59A solid;
background: white;
margin-bottom: 10px;
margin-right: 10px;
}
/*--------------------------------------------------------------------------
Styling of email address for each contact - the only link per contact
--------------------------------------------------------------------------*/
div.contact a {
font-size: 12px;
font-family: arial;
}
JavaScript
HTML
<div id="contact-wrapper">
<div class="contact">
<img src="images/example-contact.jpg" alt="contact photo" width="56" height="70" />
<h2>Tony Griffin</h2>
<h3>Managing Director</h3>
<a href="mailto:mark.giffin@phoenixaircraftleasing.com">mark.giffin@phoenixaircraftleasing.com</a>
</div>
<div class="contact">
<img src="images/example-contact.jpg" alt="contact photo" width="56" height="70" />
<h2>Barbara Cheng</h2>
<h3>Administration and Finance</h3>
<a href="mailto:barbara.cheng@phoenixaircraftleasing.com">barbara.cheng@phoenixaircraftleasing.com</a>
</div>
<div class="contact">
<img src="images/example-contact.jpg" alt="contact photo" width="56" height="70" />
<h2>Mark Griffin</h2>
<h3>Sales and Leasing</h3>
<a href="mailto:mark.griffin@phoenixaircraftleasing.com">mark.griffin@phoenixaircraftleasing.com</a>
</div>
<div class="contact clear-float">
<img src="images/example-contact.jpg" alt="contact photo" width="56" height="70" />
<h2>Stuart Perkins</h2>
<h3>Sales and Leasing</h3>
<a href="mailto:stuart.perkins@phoenixaircraftleasing.com">stuart.perkins@phoenixaircraftleasing.com</a>
</div>
<!--<div class="clear"></div>-->
</div><!--end of contact-wrapper-->
<div id="office-wrapper">
<div class="office">
<h2>CORPORATE OFFICE</h2>
<address>
Phoenix Aircraft Leasing Pte Ltd<br />
20-04 Wisma Atria<br />
435 Orchard Road,<br />
Singapore 238877
</address>
<h3>Telephone: (65)-6222 5481</h3>
<h3>Fax: (65)-6222 5486</h3>
<h3>Email:</h3>
<p>sales@phoenixaircraftleasing.com</p>
<p>palas@singnet.com.sg</p>
</div><!--end of class office-->
</div><!-- end of class office-wrapper-->
