Hi, I have 4 "List" items on my page (with vertical style selected), and they each have an image selected in the options. The images are too small however, and only take up about a third of the list row. I would like them to be full width and cover the width of the column.
Comments
you can use this custom css
.list_item .list_left {tankswidth:100% !important;
height:auto !important;
}
body .list_item .list_left img {
max-width: 100% !important;
max-height: 100% !important;
vertical-align: middle;
width:100%;
}