Thanks for your question. It is definitely possible to customize the look of this free plugin. Since this is a free plugin which I volunteer to support in my “spare time,” I leave that up to users and their developers to sort out.
Any HTML link (<a>) can be turned into a button using CSS. You could use code like this:
.wc-giftwrap .giftwrap_header_wrapper a {
background-color: darkturquoise;
border: 1px solid darkturquoise;
color: white;
cursor: pointer;
display: inline-block;
font-size: 20px;
margin: 1em 0;
padding: .5em 1em;
text-align: center;
}
Obviously you’ll need to style it to match other buttons in your theme, and match the :hover styles, so borrow some CSS from your theme. I Googled “how to style HTML link like a button” and came up with lots of advice. You will need to sort out how to add additional CSS to your theme.
Ultimately you can either use CSS or the included templating system to make the wrap prompts more prominent. If the code above doesn’t work, and you don’t know any code and don’t have time to learn, hand it over to a developer. Don’t have anyone? Check out https://jobs.wordpress.net/post-a-job/
Best of luck with your project!
-
This reply was modified 4 years, 7 months ago by
Little Package. Reason: remove tags in post