@ Eve
Tile Plus uses a fixed with in pixels. Currently percentage based widths are not supported. When settings it as 50% you are actually creating an invalid CSS width so the width becomes just big enough to fit the content.
I’ve started to see a few instances where the content does not show. It has always been due to the theme globally setting the box-sizing from the default of content-box to border-box. This messes up the width calculations for anything expecting the browser default.
What needs to be done is to change the box-sizing back to the default by overriding the theme. Do this by adding the following to theme’s custom CSS area to to the end of the theme’s styles.css file:
#cn-tile-plus .cn-entry {
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
This will not affect anything other than the Tile Plus template so it is safe to add.
Hope that helps!
