AndrewMantarro
9/8/2017 - 3:23 AM

banner 1

banner 1

<div id="logo">
     <img src="websiteLogo.png" />
</div>

<div class="contact">
    <p class="phone">03 0000 0000</p>
    <p class="mobile">0400 000 000</p>
    <a class="email" href="mailto:">email@email.com.au</a>
    <p class="address">123 Street Name, Australia 3000</p>
</div>


#banner .container{
   padding:30px 0px;
   
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   
   -webkit-flex-direction: row;
   -ms-flex-direction: row;
           flex-direction: row;
           
   -webkit-align-items: center;
   -ms-flex-align: center;
           align-items: center;
           
   -webkit-justify-content: space-between;
   -ms-flex-pack: justify;
           justify-content: space-between; 
}


#logo{
    width:80%;
    max-width:200px;
    max-height:80px;
}

#logo > img {
    width:100%;
    height:auto;
}

.contact {
    font-size:1em;
    color:inherit;
    text-align:right;
    font-family:inherit;
    
}

.contact p, .contact a{
    color:inherit;
    text-decoration:none; 
    line-height:1.2em;
    white-space:nowrap;
    clear:both;
}