https://i.sstatic.net/K4LWc.png
I'm currently working on implementing this layout using Bootstrap. So far, I have successfully positioned the Marketplace next to the logo by applying the d-inline
class.
However, I am facing a couple of issues. The alignment between the market place and the logo is not perfect, and the text below them appears disjointed with unnecessary breaks. How can I achieve the desired layout as shown in the image?
.marketplace {
background-color: #5960CB;
width: 100%;
height: 50%;
list-style-type: none;
}
.containerMarket p {
color: white;
font-family: 'Poppins', sans-serif;
margin-left: 5px;
margin-top: 10px;
}
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<div class="marketplace col-sm-12">
<div class="container containerMarket col-sm-4">
<img src="img/fullLogoWhite.png" width="150" class="d-inline"> <p class="d-inline">Marketplace</p>
<p>High quality items created by our global community.</p>
<p><span>65,478</span> Products | <span>65,478</span> Members | <span>65,478</span> Vendors</p>
</div>
Appreciate any help!