Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Gallery plugin to center on mobile

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #192911
    jknetdesign
    Participant

    I’ve spent some time trying to Firebug this and can’t get it to center. If I look at this gallery on iPhone portrait the thumbnails are left aligned. What selector needs to be targeted to center align them.

    http://backcountrytrail.com/gallery/

    #192960
    Alen
    Participant

    Define a width on the ul and center it.

    .fg-thumbHolder {
      width: 175px;
      margin: 0 auto!important;
    }
    

    #192970
    jknetdesign
    Participant

    I added this to line 1016 since it needs to be in a media query and it’s not taking.

    @media only screen and ( max-width: 479px ) {
    ul.fg-thumbHolder {
      margin: 0 auto !important;
      width: 175px !important;
    }
    
    }
    
Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.