I last checked a couple weeks ago and eBay hasn’t yet instituted its code. It will be able to be done in SixBit when eBay releases it. In the meantime, if you want just your text description to show in Mobile, but your full description wrapper on a monitor, you can add this above your wrapper code:
.desktop-only{ display: block;}
.mobile-only { display: block; }
/*small screen sizes*/
@media (min-width: 100px) {
.mobile-only { display:block;}
.desktop-only { display:none; }
}
/*medium+ screen sizes*/
@media (min-width:500px) {
.mobile-only { display:none;}
.desktop-only { display:block; }
}
{{{your wrapper code here}}} then put
at the end.