Product title and description toggling/sliding above preview image in woocomerce shop on mobile

I am having a hard time determining where the issue with my main page’s layout on landscape on mobile and tablets is coming from, I can’t seem to resolve the issue in cornerstone, on the front page the image of the man in a hoodie next to the sign up button is shoved down and the sign up button is shoved partially off screen… is there a responsive css code I can add to my custom css to resolve this? thanks!

Hi,

Please remove the 350px width you have added to your button then disable margin columns in our row.

To make your button responsive, try adding this in your button’s element CSS

@media(max-width:767px) {
  $el {
      width:200px;
  }
}

Hope this helps

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.