Page 1 of 1

vertical alignment of label within grid cell

Posted: Mon Oct 06, 2014 10:21 pm
by Brian Murphy

Similar to a horizontal alignment using the 'more properties' tab function, I am attempting to apply a vertical alignment of a label within a grid cell, but am not having much luck.
I have tried vertical-align = middle for that particular cell, but it is not working (I do not see the desired result in test mode).
Any help would be appreciated - I have spent an hour on this minute detail so far, and I do not see a simple workaround in this forum.
Thanks. Image


vertical alignment of label within grid cell

Posted: Tue Oct 07, 2014 4:34 am
by Yurii Orishchuk

Hi Brian,

You need to set following CSS style for the goal cell.

pre

vertical-align: middle;

/pre

So you can use following rule in CSS asset:

pre

/* note you should replace "mobilegridcell_173" with your cell name */
[name="mobilegridcell_173"]{
vertical-align: middle;
}

/pre

Regards.