Home › Forums › WoodMart support forum › Update update link to button › Reply To: Update update link to button
debsahoo188
body .woocommerce-MyAccount-content .woocommerce-Address-title a {
display: block;
padding: 10px 15px;
background-color: blue;
color: #fff;
border-radius: 5px; /* Rounded corners */
text-align: center; /* Center the text */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Button-like shadow */
text-decoration: none; /* Remove underline */
transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}
body .woocommerce-MyAccount-content .woocommerce-Address-title a:hover {
color: #fff;
background-color: red;
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Shadow on hover */
}
Used this and its looks great. Least it not looks like a button where user can see.
Thanks.