// ADDS CONTACT DETAILS TO BRANDING ------- //
add_action('pagelines_branding_icons_end', 'brand_phone');
function brand_phone(){ ?>
<div>(714) 795-2032</div>
<?php
}
and this in the style.css file
.brand_phone h3 {
font-size: 1.3em;
padding: 0 0 0.4em;
}
Screen shot attached.
I'd like to have the phone number have the same style as <h3> and be lined up just to the left of the social icons with logo, the phone number and the social icons all aligned at the bottom just above the menu bar.
What do I need to do differently?
Thank you,












