Announcement

Collapse
No announcement yet.

Centering in a circle

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

    Centering in a circle

    This one has me stumped. I need to center the cart quantity in the fasten_header which I have modified to look like a "circle". It looks like this

    14MEHd.png

    The CSS I have is

    Code:
    .t-site-header__basket-link-quantity {
        padding: 0.25em 1.125em 0.25em 0;
        border-radius: 1em;
    }
    If I play with the padding I lose the circle shape. Should I try percentages?



    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,

    Based off the stock code, using a percent should do what you want.
    Code:
    .t-site-header__basket-link-quantity {
        margin-left: 0.25em;
        padding: 0.5rem 1em;
        border-radius: 50%;
    }
    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
      Thanks Matt, that's getting in the right direction!
      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