Tagged: chrome, not working
Hi
I am using this code
table.shop_attributes th {
min-width: 40%;
}
It works correctly on FF and IE but it doesnt work on Chrome.
Any suggestions?
Hey richardelectrix!
Switch it to this.
table.shop_attributes th {
min-width: 40%;
width: 40% !important;
}
Or use a pixel value.
table.shop_attributes th {
min-width: 100px !important;
}
Best regards,
Elliott
Perfect thanks