Tagged: table
Hi
How can I add a table around my specification table to match the border around other tables?
Specification table:
http://screencast.com/t/8nsVKj9Q
How I want th specification table to look:
http://screencast.com/t/6VzRueBdc
Also note the ‘headers’ case should be in Title Case rather than all CAPS.
How can I change that too?
Hey richardelectrix!
Please add following code to Quick CSS
table.shop_attributes th, table.shop_attributes td {
border: 1px solid #e2e2e2!important;
}
Best regards,
Yigit
Hi
That works well on Desktop, but on mobile it looks strange …
http://screencast.com/t/GyNLCdZOq
Thanks
Hey!
Please change the code to following one
table.shop_attributes th {
border: 1px solid #e2e2e2!important;
}
@media only screen and (min-width: 767px) {
table.shop_attributes td {
border: 1px solid #e2e2e2!important;
}}
Cheers!
Yigit
Perfect thanks