Editing for Mobile

One of my desktop pages places several columns across the computer window. The 1st column contains PDF icons, and the 2nd column contains text relating to each adjacent image. However, the Mobile layout places columns beneath each other. Yes, I have the option of hiding the 2nd column, but what I would prefer to do is to add my text under each individual image.

I would like this text to be similar to, but in addition to the title text of the PDF icon. Is this possible?

1 Like

I found the tutorial, ‘Displaying Elements in Mobile only’ and entered the following code:

import wixWindow from 'wix-window';
$w.onReady(function () {
if(wixWindow.formFactor === "Mobile"){
$w("text122").show();
}
});

However, I got a message, “text122” is not a valid selector"

Waz up?

Missing hashtag:

$w("#text122").show();

Please post code questions in the Community Discussion forum.