Button mis-alignment in Firefox for Yuzoolthemes Cart

Hi everyone,

(I’ve reached out directly to Yuzoolthemes about this as well. His demo site experiences the same misalignment in Firefox.)

For button alignment for Cart Simple and View Cart buttons, I have chose align = “centre” and align = “right” respectively in the stack commands.

In Chrome and Safari, the buttons align properly. In Firefox and Edge, the Cart button alignments default to the left. (photo attached)

Any thoughts how to correct?

Thank you for any help.

John

Kindly provide a link to a page where we can see this issue. Or, instructions on what to do to get the page you are looking at to appear.

As a shot in the dark (because you mentioned the yuzoolthemes demo page) , try adding this CSS to your project:

.pay-submit {
    display: block !important;
    float: right !important;
}

You can change the “right” to “left” or “none”.

4 Likes

Thank you klattu for the suggestion.

With your suggestion, I dug into CSS (for the first time).

Both button types have the same class so I had to used divs.

I used CSS3:

div# {
display:flex;
justify-content:center;
}

I appreciate your help very much and am grateful that you’ve kicked my butt into the world of CSS.

John

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.