11/04/2013 at 11:19 am
#272952
Keymaster
@ kelsey
The reason Tile has a locked with/height is to allow it to tile. Permitting a fluid height would break that. Keeping that in mind … here’s the change you need to make.
Open the card.php file and look for this line:
<div id="entry-id-<?php echo $entry->getRuid(); ?>" class="cn-entry" style="height: <?php echo $atts['card_height']; ?>px; width: <?php echo $atts['card_width']; ?>px;">
and change it to:
<div id="entry-id-<?php echo $entry->getRuid(); ?>" class="cn-entry" style="width: <?php echo $atts['card_width']; ?>px;">
Hope that helps!
