Quick Customization: Change Your kvCORE Landing Page Submit Button Color

Hate that bright orange submit button on your kvCORE landing page? Is it killing your finely crafted branding vibe? Yuck! Here is the fix…

Copy the code below and paste it into the ‘Custom Header’ setting in your kvCORE ‘Web & IDX’ settings. This will apply to ALL your landing pages…

You can change the hex color codes to suit your needs. The background-color is pretty self-explanatory. If you want to change the font color, well, change the hex color code for the color property. Easy-peasy.

NOTE: This will not change the button color within the landing page generator itself, only on the live landing page after you publish/save it.

Happy customizing!!!

<style>
    form#subscribeForm button.btn-warning {
	background-color: #2c3848;
	border-color: #333;
	box-shadow: 0 3px 0 #333;
        color: #fff;
}
    form#subscribeForm button.btn-warning:hover {
	background-color: #2c3848;
	border-color: #333;
	box-shadow: 0 3px 0 #777;
        color: #fff;
}
</style>

Leave a Comment