/* Default: hide mobile version */
#mobile-row-only {
    display: none;
}

/* Mobile screens */
@media screen and (max-width: 768px) {

    /* Hide desktop version */
    #non-mobile-row-only {
        display: none;
    }

    /* Show mobile version */
    #mobile-row-only {
        display: block;
    }
}