Search⌘ K
AI Features

Merchant and Signup Section

Explore how to build the merchant and signup sections of a Shopify clone layout using Bootstrap 4. Understand adding backgrounds, text blocks, and call-to-action buttons with default CSS classes to create a clean and functional design.

The merchant section

The merchant section shows off an actual success story.

Let's begin by adding section five's containers and a custom background.

HTML
<head>
<style>
.bg-custom2 {
background: #f5f5fc;
}
</style>
</head>
<body>
<!-- section 5 -->
<div class="container-fluid">
<div class="container">
This is section 5
</div>
</div>
</body>

Our section 5 ...