Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #345638

    When I pull up my portfolio grid on a mobile device such as the iPad a lower border line is showing up (see image) How do I remove the lower border line I have highlighted in the image so that area remains white? I think it has to do with some of the titles for the galleries go to 2 lines on smaller screens and this is when the lower border appears. Thanks in advance!

    #345908

    Hey djshortkut!

    Please add following code to Quick CSS

    @media only screen and (max-width: 480px) {
    #top div .no_margin { margin-bottom: 0!important; }}

    Best regards,
    Yigit

    #346734

    This didn’t work

    #347006

    Hi!

    If possible, post the url of the actual page with the issue. You can set a min height for the grid content container:

    @media only screen and (max-width: 1024px) {
    .grid-entry.isotope-item .grid-content {
    background: #ffffff;
    min-height: 68px;
    }
    }

    Or decrease the font size of the portfolio title:

    @media only screen and (max-width: 1024px) {
    .grid-entry-title {
    font-size: 11px;
    }
    }

    Cheers!
    Ismael

    #348095
    This reply has been marked as private.
    #348464

    Hi!
    use this line before css changes to target iPad in portrait mode:
    @media only screen and (max-width: 989px) and (min-width: 768px)

    Best regards,
    Andy

    #348659

    That did it, thanks!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Portfolio Grid Lower Border Lines’ is closed to new replies.