Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #540633

    Hi

    I am trying to align my ‘Add To Quote List’ button on screens larger than 929px.

    http://dev2.electrixinternational.com/product/flat-lid-trunking-length/

    I want to align it so the right of the button is directly under the right of the drop down selection box.

    I have it working perfectly on every screen size less that 929 but I can’t see to control it on 929+.

    It is saying that varitions_button is overriding div.variations_button.

    http://screencast.com/t/rkWmYqj1

    #540755

    Hi richardelectrix!

    Please change following code

    @media only screen and (min-width: 990px){
    .variations_button {
        right: 0 !important;
        left: auto !important;
        position: absolute;
        width: 322px !important;
        bottom: 10px;
    }}

    to following one

    @media only screen and (min-width: 990px){ 
    .variations_button {
        right: 0 !important;
        left: auto !important;
        position: absolute;
        width: 295px !important;
        bottom: 10px;
    }}

    Cheers!
    Yigit

    #541007

    Brilliant thanks

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Aligning buttons in the product selection page’ is closed to new replies.