How to Display Product Descriptions Automatically in Mobile Version – Magento 1.9

ce-1.9.0.1magento-1.9mobilerwdrwd-theme

We are using 1.9.0.1, the rwd theme.

By default, you need to click "Description" when viewing a product on your phone, and then the description will drop down and show.

I feel like a lot of customers glance over this, and I would like the description to load automatically.

Is there a way to do this?

Thanks

Best Answer

Open your styles.css and apply the following style

@media (max-width: 770px)
{
  .product-collateral > dl > dd {
    display: block !important;
  }
}
Related Topic