Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.
Hi All,
I just started to use Symbiostock and am trying to categorize thousands of images. Is there a way I can increase the size of the thumbnails on the media page?
Easiest way is to just increase the font-size/zoom in your browser. If you don’t want to do that, you can add this to your theme’s functions.php (or anywhere else that is included in your WP install):
function adminlargethumb() {
echo ‘<style>
table.wp-list-table td.column-thumb img {
max-width: 80px!important;
max-height: 80px!important;
}
</style>’;
}
You must be logged in to reply to this topic.