Page 3 of 4

How to resize image in the list ?

Posted: Fri Dec 13, 2013 1:24 pm
by Kateryna Grynko

Hi Laura,

Then you should set size in percent instead of pixels.


How to resize image in the list ?

Posted: Fri Dec 13, 2013 3:49 pm
by laura6372139

.button{
color:#fff; /*no declaro RGBA aqui por que quiero 100% blanco /
background:rgba(0,0,0, 0.35); /bien baja para ver la diferencia */
width:100%; !important;
height:100%; !important;

}

Not change size!


How to resize image in the list ?

Posted: Fri Dec 13, 2013 4:55 pm
by laura6372139

I have the solution!!!

thanks!


How to resize image in the list ?

Posted: Fri May 23, 2014 4:40 pm
by laura6372139

Hi!

I create a css and this code:

.ui-page .ui-li .ui-li-thumb, .ui-page .ui-li .ui-li-icon {

Code: Select all

 max-height: 100px;  

 max-width: 150px;  

 height: 100px;  

 width: 150px;  

}

.ui-page .ui-li-has-thumb .ui-btn-inner a.ui-link-inherit, .ui-page .ui-li-static.ui-li-has-thumb {

Code: Select all

 min-height: 100px;  

}

.ui-page .ui-li-has-thumb .ui-link-inherit {

Code: Select all

 padding: 0px 160px !important; 

}

.ui-page .ui-li-has-thumb .ui-link-inherit .ui-li-heading {

Code: Select all

 margin-top: 10px !important;  

}

But I don't get to change the size of the list.

Image

I need to do the icon smaller and vertically align the text.


How to resize image in the list ?

Posted: Fri May 23, 2014 5:53 pm
by Kateryna Grynko

Hi Laura,

What is your library version and theme?


How to resize image in the list ?

Posted: Tue Jun 24, 2014 7:34 am
by Alex GG

Hi katya,
I have the same problem as laura.

I have paste the CSS code from above, and the icons on the list didnt resize.

Also Im trying to vertically center the text on the list item with no luck...

Im using library version 2.0 and ios theme..

Any suggestion?

Regards


How to resize image in the list ?

Posted: Tue Jun 24, 2014 8:58 am
by Kateryna Grynko

Hi Alex,

Icons and text are centered by default for iOS theme...

Image

Could you please post a screenshot?


How to resize image in the list ?

Posted: Tue Jun 24, 2014 9:45 am
by Alex GG

Hi,
here is the ss, I need to resize the thumbnail, and vertically align text.

Regards

Image


How to resize image in the list ?

Posted: Tue Jun 24, 2014 11:46 am
by Kateryna Grynko

Hi Alex,

For thumbnails, try the following CSS: pre[name=mobilelistName] {
display:table;
width:100%;
}
[name=mobilelistName] h3{
display:table-cell!important;
vertical-align:middle;
height: 50px;
}/preWhere 'mobilelistName' is a List name.


How to resize image in the list ?

Posted: Tue Jun 24, 2014 10:44 pm
by Alex GG

Hi Katya,
I tried the code, but it only centered the text vertically, the thumbnail remains the same size?

Am I doing something wrong?

Regards