Home Forums Trusted Car buttons alignment Reply To: Car buttons alignment

#5363
Andy
Keymaster

There are two options for this. In Customize > Additional CSS, add either option 1 or 2

Option 1:

.top-login-mini-cart a.button {
    display: block;
    text-align: center;
    margin-top: 10px;
}

.top-login-mini-cart a.button.checkout {
    float: none;
}

Option 2:

.top-login-mini-cart a.button.checkout {
    float: none;
    margin-top: 10px;
}

Option 1 makes both buttons full width, and option 2 makes both buttons aligned to the left.