This is direct HTML/CSS code that you can directly add in the shopify customize using custom liquid widget/section.
Code:
<style>
.quote-section {
background-color: #f5f5f5;
padding: 50px 20px;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 40px;
border-radius: 12px;
max-width: 1200px;
margin: auto
}
.quote-section__content {
flex: 2 1 500px;
max-width: 700px;
}
.quote-section__heading {
font-size: 28px;
font-weight: 700;
margin-bottom: 15px;
color: #222;
}
.quote-section__text {
font-size: 16px;
margin-bottom: 25px;
color: #444;
line-height: 1.6;
}
.quote-section__cta {
display: inline-block;
padding: 12px 25px;
background-color: #222;
color: #fff;
font-size: 16px;
border-radius: 50px;
text-decoration: none;
transition: 0.3s;
}
.quote-section__cta:hover {
background-color: #444;
}
.quote-section__owner {
flex: 1 1 250px;
max-width: 300px;
text-align: center;
}
.quote-section__owner img {
width: 120px;
height: 120px;
border-radius: 50%;
margin-bottom: 15px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.quote-section__owner-name {
font-weight: 600;
color: #222;
margin-bottom: 5px;
}
.quote-section__owner-quote {
font-style: italic;
font-size: 14px;
color: #555;
line-height: 1.4;
}
/* Mobile responsive */
@media (max-width: 767px) {
.quote-section {
flex-direction: column;
text-align: center;
padding: 0px 20px !important;
}
.quote-section__content {
text-align: center;
max-height: fit-content;
}
}
</style>
<div class="quote-section">
<div class="quote-section__content">
<h2 class="quote-section__heading">Get Expert Flooring Advice – Direct from the Owner</h2>
<p class="quote-section__text">
Thinking about new flooring but not sure where to start? Schedule a free consultation with our flooring expert and company owner. Get personalized recommendations based on your space, style, and budget – with no pressure to buy.
</p>
<a href="https://royalfloorsonline.com/pages/contact" class="quote-section__cta">Request a Free Quote</a>
</div>
<div class="quote-section__owner">
<img src="https://cdn.shopify.com/s/files/1/0696/7771/1533/files/PROFILE-PIC.webp?v=1753948898" alt="Owner Image">
<div class="quote-section__owner-name">David Santiago, Founder</div>
<div class="quote-section__owner-quote">“Your floors matter. Let’s make them amazing — together.â€</div>
</div>
</div>
