i want to remove this area, in checkout page, but every my try was not working. I tryed to insert this CSS:
.avada-myaccount-user-column .username {
display:none;
}
This is product that trying to insert into cart, for testing purposes. Someone to help me ?
.avada-myaccount-user-column .username
will not work because .username
is not a child of .avada-myaccount-user-column
.
Change your CSS to:
.avada-myaccount-user-column.username {
display: none;
}
This example means the first class requires the second class for it to be affected.