I was wondering if this was a bug or by design?
I have a grid corner label (defined under the grid text tab of a grid question) which looks great in desktop / laptop view. In mobile phone / tablet view, it totally disappears.
I was able to use the ScreenWidth function and some Perl within my row parent list to rectify the issue (see below) ...
[%Begin Unverified Perl
my $brand="";
if(SCREENWIDTH()<800)
{
$brand="<b>Brand A - Ease of managing and updating your listings on the site</b>";
}
else
{
$brand="Brand A";
}
return $brand;
End Unverified%]
Should the grid corner label be displayed in mobile phone / tablet view without having to write Perl script?
Looking forward to your reply. Thank you.