Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #933471

    Hi,
    I have a portfolio grid. I want to adjust it so that the distances down and to the right are the same. Unfortunately the distance down is too big. How can I reduce the downturn?

    #933497

    Hey Chris_85,

    Can you please be more specific on which distances you need to make smaller?

    Best regards,
    Victoria

    #934054

    Link zum Bild

    you can see the distance, marked by red lines…the distance should be 5 px….on all devices…On Desktop it works with the following css:
    .grid-entry { max-height: 265px;}

    but this is a bad solution for smaller displays…

    Best regrads

    Chris

    • This reply was modified 6 years, 8 months ago by Chris_85.
    #934170

    Hi Chris,

    Can you disable caching and minification for now?

    Best regards,
    Victoria

    #934409

    Hi,

    i did…

    #934836

    Hi,

    Please replace the previous modification with the following css code so that it doesn’t affect the mobile view.

    @media only screen and (min-width: 768px) {
      /* Add your Desktop Styles here */
      .grid-entry { max-height: 265px;}
    }

    Best regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.