Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery Mobile, List views Thumbnails size

I'm integrating jQuery Mobile with List views Thumbnails, but it resizes my images on fly to fixed width. Changing .ui-li-thumb width doesn't help. How to make my thumbs wider?

like image 333
Roman Newaza Avatar asked Jan 19 '23 13:01

Roman Newaza


1 Answers

Try this and include ", .ui-li-icon"!

.ui-li-thumb, .ui-li-icon {
    left: 1px;
    max-height: 60px; 
    max-width: 60px;
    position: absolute;
    top: 0;
}

This effects the thumbnail size to 60*60px .. working in my case with every size.

If this does not work, provide some of your code to see whats wrong (HTML, JS, CSS).

like image 164
dotchuZ Avatar answered Jan 31 '23 07:01

dotchuZ