call to order

code php : 

function display_cta_block() {
return ‘
<div class= »cta-section »>
<h2>Transform Your Space Today</h2>
<p>Expert installation, stunning finishes, and a 100% professional result.</p>
<a href= »/contact » class= »cta-button »>Get Your Free Quote Now</a>
</div>’;
}
add_shortcode(‘cta_block’, ‘display_cta_block’);

code css :

.cta-section {
background: #000080; /* Navy Blue */
color: #ffffff; /* Texte général en blanc */
padding: 60px 20px;
text-align: center;
border-radius: 20px;
margin: 40px 0;
}

/* Titre forcé en blanc */
.cta-section h2 {
font-size: 2.5rem;
margin-bottom: 10px;
color: #ffffff !important;
}

/* Sous-titre en orange pour garder le contraste */
.cta-section p {
font-size: 1.2rem;
color: #FFA500;
margin-bottom: 30px;
}

.cta-button {
display: inline-block;
padding: 15px 40px;
background: #FFA500; /* Orange */
color: #000080; /* Texte du bouton en bleu marine */
font-weight: bold;
text-decoration: none;
border-radius: 50px;
font-size: 1.1rem;
transition: transform 0.3s, background 0.3s;
}

.cta-button:hover {
background: #fff;
transform: scale(1.05);
}

code court :

Transform Your Space Today

Expert installation, stunning finishes, and a 100% professional result.

Get Your Free Quote Now

Transform Your Space Today

Expert installation, stunning finishes, and a 100% professional result.

Get Your Free Quote Now
Retour en haut