1

How to create navbar with 2 rows (with difference colors) and set logo inside navbar like this? Link to image (how it should be): https://i.imgur.com/iBwKZt6.png

I have tried these but it's not what i'm search: Bootstrap 4: Navbar with logo and 2 rows or Bootstrap 4 navbar with 2 rows

So, every line has different colors. Otherwise it look like 1-color big panel with logo.

How to set it correctly?

A have created this with position: absolute. I think it is not good idea. https://codepen.io/AntonFix/pen/moozJQ

HTML:

<div class="row bg-custom2">
    <div class="container">
        <div class="col-md-12">
            <div class="row">
                <div class="col-md-6 offset-md-4 float-right my-3">
                    Call us! | WhatsApp | E-mail
                </div>
            </div>
        </div>
    </div>
</div>
<nav class="navbar navbar-expand-md navbar-light bg-custom navbar-logo">
    <a href="#" class="navbar-brand">
        <img class="logo-image" src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Test-Logo.svg/320px-Test-Logo.svg.png" alt="Logo">
    </a>
</nav>

CSS:

.logo-image {
    position: absolute;
    height: 90px;
    top: -2.2rem;
}
Joel
  • 4,537
  • 2
  • 33
  • 53
Anton
  • 15
  • 6

0 Answers0