I have created a hub page with two rows. The first displays on screens above and including 768px (hidden-xs) and the second row displays only on screens below 768px (visible-xs).
My problem is that I can no longer access the second row to edit it.
I can't access it through regular editing options and I don't get the edit option on mobile or when I "inspect" the page and set it small enough.
I tried deleting the two text boxes in the row, but the delete feature is not available on mobile or in "inspect" mode.
Is my ask impossible or am I missing something?
Thanks.
Solved! Go to Solution.
I have figure out a work-around. While not ideal, it did the trick.
Not pretty but it worked.
I have figure out a work-around. While not ideal, it did the trick.
Not pretty but it worked.
I'm having the same problem - thanks for the workaround but this is far from ideal ESRI.
I'm also noticing that resizing the screen width is bringing my hidden-xs and hidden-s items back into view for editing, which is a bit easier.
Thank you @KyleHeulitt2 and @AlphonsEvers
Hi,
Can I ask how you hid the row on mobile?
I cannot find an appropriate line to add to the row CSS.
Thanks!
I used the following CSS to hide a row on extra small and small screens: hidden-xs hidden-sm
...and the following to hide a row on medium and large screens: hidden-m hidden-lg.
This way I had a row that was set up for each type of screen.
Hi yrpEH,
I added my code to the Row CSS Class input when editing the row.
For this to work the way I used it, you need a mobile version of the row and a duplicate version for all other screen sizes.
The mobile version of the row has visible-xs class and the other version used the hidden-xs class
HTH