Home Forums WoodMart support forum Change elements in thamplates Reply To: Change elements in thamplates

#170596

Hello,

Actually that was a table and inside it td and th defined. But in your case some td and th are hidden by custom CSS that’s why it is shown like this.

Screenshot for clarification: https://ibb.co/nLDbZsn

That’s why I asked you to undo your custom CSS code for a while from theme settings and then check back. If it does not fix then use the below CSS code in global custom CSS area under theme settings >> custom CSS:

td.my_cart_poditog {
    display: block;
}
th.my_cl_cart_dost_one {
    display: block;
    visibility: hidden;
}

Best Regards.