51 lines
758 B
PHP
51 lines
758 B
PHP
<?php
|
|
/** Products display */
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
?>
|
|
|
|
table.sm-product-grid {
|
|
width: 100%;
|
|
}
|
|
|
|
.sm-product-grid-container {
|
|
font-size: 0px;
|
|
margin: 10px 0 10px;
|
|
}
|
|
|
|
.sm-product-grid-item-3-col {
|
|
width: 30.5%;
|
|
display: inline-block;
|
|
text-align: left;
|
|
padding: 0 0 30px;
|
|
vertical-align: top;
|
|
word-wrap: break-word;
|
|
margin-right: 4%;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.sm-product-grid-item-2-col {
|
|
width: 46%;
|
|
display: inline-block;
|
|
text-align: left;
|
|
padding: 0 0 30px;
|
|
vertical-align: top;
|
|
word-wrap: break-word;
|
|
margin-right: 6%;
|
|
font-size: 14px;
|
|
}
|
|
|
|
ul.shopmagic-order-items {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
ul.shopmagic-order-items li {
|
|
margin-bottom: 4px;
|
|
padding-left: 1em;
|
|
border-bottom: 1px solid #ccc;
|
|
}
|