How to have more control over block sizing on the page

Hi!

Me again!

Let’s make it more simple. Forget the resizing (transform scale = bye bye) and just play with the width (play with “1000px” only). Change #list1 by the right block id. The modals shouldn’t be affected.

I disabled those changes on mobile.

Also it should be easier to maintain, some of the selectors I gave you may disappear in the next weeks (specifically all looking like ‘.cssxxxx’ related to action buttons or any button)

<style>
 #list1 {
  width: 1000px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  #list1 {
    width: auto;
    margin: 0;
  }
}
</style>
2 Likes