Hello and thanks for your time. You guys are great at supporting this theme so thank you. My question is, can you add a button underneath the contact details on the homepage? i have taken a screen shot with a red arrow pointing at a button that i would like to be there. Thank you so much.
Hello, Go to header.php present in your theme directory and add the code given below Code: <div class="buttons"><a href="Enter your link address">Button</a></div> Sending image for reference Now, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .buttons { margin-top:100px; text-align: right; } .buttons a { color: white; font-size: 24px; background: gray; height: auto; width: auto; border-radius: 7px; } .buttons a:hover{ opacity:.8; } This will solve your issue.