I am currently working on customizing a header with Bootstrap 4 alpha.
<div class="container">
<div class="row">
<div class="col-md-6 text-md-left text-center">
<div class="navbar-brand"><img src="/wp-content/themes/tarps/assets/img/logo.png">
</div>
</div>
<div class="col-md-6 text-md-right text-center">
<div class="header-btn-grp">
<div class="header-call-us">Get a Quote, Call Today!</div>
<a role="button" class="btn btn-danger btn-lg header-btn" href="tel:08XXXXXXX">Ph : <strong>(08) XXX XXXX</strong></a>
<div class="header-address">XXXX</div>
</div>
</div>
</div>
</div>
My goal is to optimize how the logo is displayed on various screen sizes. We have both a landscape and portrait version of the logo for desktop and mobile.
My idea is to have two versions of the logo (logo-land and logo-port). I'm uncertain how to implement both logos and use Bootstrap classes to determine which one is displayed based on screen size (e.g., xs, md, etc).
Can anyone provide guidance on how to achieve this?