ZeEsH
Posts: 0
Joined: Thu Apr 24, 2014 2:17 pm

How to place image in centre of screen?

I am trying to place an image in the centre of the screen regardless of screen resolution, is that possible?

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

How to place image in centre of screen?

Hi,

Use this code to center the Image component:
prediv[data-role=page] {
display: table !important;
}
div[data-role=content] {
display: table-cell ;
text-align: center;
vertical-align: middle;
}
img[name=mobileimage_name]{
display: inline-block;
}/pre
Where 'mobileimage_name' is an image component name.

ZeEsH
Posts: 0
Joined: Thu Apr 24, 2014 2:17 pm

How to place image in centre of screen?

Thank you, spot on. Tested and Working

Return to “Issues”