Button display problem

In my website this section http://www.arkitworld.com/job/the-curiopets-company-mountain-view-ar-developer/ I am not able to see button, it only visible only when I move cursor over it
How can make visible?

Please find attached image

Hi @raj00,

I hope you are well today and thank you for your question.

You can display it by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

input.application_button.btn.btn-default {
    background-color: #251c1c;
}

input.application_button.btn.btn-default:hover {
    background-color: #363636;
}

You can change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin

Thanks, Movin that problem solved in that page but it still remains on this page http://www.arkitworld.com/post-a-job/
Have look

Hey there

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*try adding this to the additional CSS section */
input.button.btn.btn-default{
    background-color: #251c1c !important;
}
input.button.btn.btn-default:hover {
    background-color: #363636 !important;
}

Best Regards,
Support

Thanks support

You are always welcome here :slight_smile: