To change the size of the preview images go into
Admin >> Appearances >> Editor >> style.cssand find this line:
- Code:
img.preview { float: left; width: 172px; height: 93px; margin: 18px 0 0 28px; padding: 0; }
and change the width and height values accordingly.
Of course if you change the size of the preview images you'll need to remove the brown box surrounding then as that is a static size graphic. To do that go into style.css and find this line:
- Code:
.left-column .entry { background: #b7a176 url(images/preview.jpg) no-repeat; width: 230px; height: 130px; padding: 0; margin: 15px 0 7px 0; border: none; }
and change
background: #b7a176 url(images/preview.jpg) no-repeat; to
background: #b7a176; or whatever background color you want. Or if you don't want any background color it would be
background: none;.