Second button or parralax not showing

When I create a second button in my home page parralax the second button only shows when i hover?

See here My Site, there should be a button next to Latest News under banner image?

Hi @gripnrip,

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

This is happening because it has same color as your site background color.

You can try changing its color by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other


div#shapely_home_parallax-3 a.btn.btn-lg.btn-white {
    background: #000;
    border-color: #000;
}

div#shapely_home_parallax-3 a.btn.btn-lg.btn-white:hover {
    background: #6f6767;
    border-color: #6f6767;
    color: #fff;
}

Best Regards,
Movin