Announcement

Collapse
No announcement yet.

Navigation Sets - Visual Navigation: setting the mm-card-grid-item

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Navigation Sets - Visual Navigation: setting the mm-card-grid-item

    I'm wondering if there is an easy way to set the number of thumbnails in the row for the SFNT: Visual Navigation Navigation Set. I see that it uses the class .mm-card-grid-item which appears to start off with 4 thumbnails in the row max-width: calc(25% - 1px); I would love an easy way to set this to start with 3. Is the only way to add the tweak to my custom.css file with all my other tweaks?
    Leslie Kirk
    Miva Certified Developer
    Miva Merchant Specialist since 1997
    Previously of Webs Your Way
    (aka Leslie Nord leslienord)

    Email me: [email protected]
    www.lesliekirk.com

    Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr

    #2
    Hi Leslie,

    I am guessing you are referring to the Booc ReadyTheme as Levels does not have this as part of the layout. The easiest way to make this adjustment, would be to add the following to your custom stylesheet.

    Code:
    .visual-navigation .mm-card-grid-item {
        max-width: 33%;
        flex: 0 0 33%;
    }
    
    .visual-navigation .mm-card-grid-item--2x {
        max-width: 66%;
        flex: 0 0 66%;
    }
    Matt Zimmermann

    Miva Web Developer
    Alchemy Web Development
    https://www.alchemywebdev.com
    Site Development - Maintenance - Consultation

    Miva Certified Developer
    Miva Professional Developer

    https://www.dev4web.net | Twitter

    Comment


      #3
      Yeah, I wasn't sure which theme - this a frankenmonster meld and one of the items I used is the visual navigation...

      plug & play, plug & play, plug & play
      Leslie Kirk
      Miva Certified Developer
      Miva Merchant Specialist since 1997
      Previously of Webs Your Way
      (aka Leslie Nord leslienord)

      Email me: [email protected]
      www.lesliekirk.com

      Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr

      Comment

      Working...
      X