Home › Forums › Support › How made desktop / mobile adaptive line? This topic has 4 replies, 2 voices, and was last updated 3 years, 2 months ago by Ying. Viewing 5 posts - 1 through 5 (of 5 total) Author Posts February 22, 2023 at 1:02 pm #2543153 Volodymyr Previously, this code worked: <div class="grid-container"> <div class="grid-35">Text 1 / or Img</div> <div class="grid-65">Text 2</div> </div> How to do it correctly now? Please February 22, 2023 at 1:09 pm #2543164 Volodymyr Help please February 22, 2023 at 2:18 pm #2543246 YingStaff Customer Support Hi there, As you are using the flexbox structure, the theme no longer has thegrid-35 built-in class. Add this CSS: .entry-content .grid-container { display: flex; } Remove the float:left;inline CSS. February 22, 2023 at 2:28 pm #2543261 Volodymyr Already better. But how to find a complete solution to the problem?) Thank you!! February 22, 2023 at 2:34 pm #2543268 YingStaff Customer Support The best option would be using blocks to create your pages. If you do NOT want to use block, you can create your own CSS class, eg. add this CSS so you can use the classes for your HTML elements: .grid-35 { width: 35%; } .grid-65 { width: 65%; } Author Posts Viewing 5 posts - 1 through 5 (of 5 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In