-
AuthorPosts
-
March 7, 2016 at 3:52 am #826604
Hi Nenad,
This is a default way of how visibility feature works. When you hide a column on mobiles, it’s hidden by CSS
display: none
property. If you want to show another column on mobiles in place of the current one, you can simply add another column and set it to be hidden on desktops and visible on mobiles.Thank you!
March 7, 2016 at 3:56 am #826613Hi,
I figure it out.. not sure it this is the right way, please point me if you have another solution.
i have done this for the row i want to hide on mobile:
@media only screen and (max-width: 600px) {
.mobile_row_hide {
display: none;
}
}and for the content i want to show on mobile I used “hide on device” (for large screen) check-box in responsive settings.
could you point me how to hide row on large screen with custom code?
thanks…
March 7, 2016 at 4:18 am #826634Hi,
You can use these classes.
x-hide-xl – Extra Large | 1200px & Up
x-hide-lg – Large | 980px – 1199px
x-hide-md – Medium | 768px – 979px
x-hide-sm – Small | 481px – 767px
x-hide-xs – Extra Small | 480px & SmallerYou can add x-hide-lg in the class field of your row to make it hidden on large screens.
Hope that helps.
March 7, 2016 at 4:20 am #826637Thanks..
March 7, 2016 at 4:25 am #826646You’re welcome! 🙂
-
AuthorPosts