Last question, I was able to get it kind of where I want it. Is there a way to change the Height of the card all together? Ivar calcHeight = function()
{
$( “#preview-frame” ).height($(window).height() – 100);
}
$(document).ready(function()
{
calcHeight();
});
$(window).resize(function()
{
calcHeight();
}).load(function()
{
calcHeight();
});
I think this is the responsive function, I’m just not sure where to go from here.