Tagged: billing address, woocommerce, woocommerce My Account
HI
On the woocommerce My Account page, the area at the top with Billing address has an edit button that is not accessible. In fact, the entire box that holds the address is non-clickable (can’t copy text). The Delivery address box underneath works fine, and I can see that the link to /my-account/edit-address/fakturering/ is correct and functions fine. I tested a staging site with the woocommerce shop theme, and there was no problem. Do you know what the issue might be?
thanks for taking a look
Nancy
Hey Nancy,
The following custom CSS code you have in the Style.css file of your child theme was causing the issue
.col2-set .col-2 {
float: none !important
}
I changed the code to the following one
#top:not(.woocommerce-account) .col2-set .col-2 {
float: none !important
}
Please review your website.
Best regards,
Yigit
that’s great thanks! I don’t remember what that code was about, but I’ll keep it for now.
it works fine now.
best
Nancy
Hi Nancy,
You can add a comment above your custom CSS code to remember why you added the code: https://developer.mozilla.org/en-US/docs/Web/CSS/Comments
You are welcome! Let us know if you have any other questions and enjoy the rest of your day.
Best regards,
Yigit