Select Page

Craft a captivating header call-to-action button with CSS and hover effects in WordPress

Button Design

.demo-button a {
color: #ffffff !important;
background-color: #1e1655 !important;
padding: 10px !important;
border-radius: 3px !important;
border: none !important;
max-height: 40px !important;
text-decoration: none !important;
}

Hover Design

.demo-button a:hover {
background-color: #3b62af !important;
}