problem with position of buttons continue shopping and checkout on page checkout/cart

ThemeBurn SupportForumsOpenCart ThemesKiddos OpenCart Themeproblem with position of buttons continue shopping and checkout on page checkout/cart

This topic has been marked as resolved.

Hello.
I had the same problem as described in http://support.themeburn.com/topic/checkout-and-login-buttons


@media (min-width: 769px) {
  .buttons [class*="left"] {
    order: 1;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .buttons [class*="right"] {
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}

I have updated custom CSS with code from the topic above.
It solved my problem on login page.
But at the same time I received another one: with position of buttons continue shopping and checkout on page checkout/cart.

Originally checkout button is on the right end and continue shopping on the left side.
But after applying code mentioned above button checkout become on the left side and button Continue shopping on the right side, which is not convenient.

Could you please help with this, but taking into account also login page and that script solved my first issue with buttons position on login page.

Thank you in advance.

March 3, 2017 at 3:30 am #57090

Hi,

You can scope the extra code with this class that is applied to the body for each page individually:

@media (min-width: 769px) {
  .account-simpleregister .buttons [class*="left"] {
    order: 1;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .account-simpleregister .buttons [class*="right"] {
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}

BR,
ThemeBurn team

March 5, 2017 at 3:32 pm #57125

Thank you. I received expected results.

March 7, 2017 at 12:29 am #57199

Glad we’ve helped :)

BR,
ThemeBurn team

March 10, 2017 at 5:17 pm #57301
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.