Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #528142

    i used a quotation plugin, but the button for the quotation is not alligned properly.
    I want to have al line inbetween the button from shop and the button for quote request.

    See : http://www.celebrationevents.nl/shop/verhuur-drive-in-shows/basic/
    .single_adq_button { background-color: #444444!important; }

    Wich code should i add to the CSS to fix this?

    Thanxs in advance.

    Kind regards
    Gilbert

    #528679

    Hi Gilbert!

    Add this to your custom CSS.

    .button_add_to_quote { margin-top: 0px !important; }
    

    Best regards,
    Elliott

    #528772

    Thanxs Eliiot,

    with the code the buttons where placed next tot eachother with no spacing, thats fine as well
    How can i get some spacing between the buttons?

    Kind Regards
    Gilbert

    #528883

    Hey!

    Add some margin-left to them, and that will provide some space.

    .button_add_to_quote { 
    margin-top: 0px !important; 
    margin-left: 10px !important; 
    }

    let us know if that helped you out

    Regards,
    Basilis

    #528888

    Hello Basillis,

    Thanxs for your time, I have added the left margin but nothing happens…

    Some other suggestions?

    #529253

    Hey!

    Please try using following code

    .simple_add_to_quote.button_add_to_quote {
        position: relative;
        left: 10px;
    }

    Regards,
    Yigit

    #529258

    Thanxs Yigit for the support.

    The buttons are now aligned fine on PC screen
    But on smartphone, the request botton is not completly aligned to the left.

    Some other suggestions?

    #529745

    Hi!

    Please add this in the Quick CSS field:

    @media only screen and (max-width: 767px) {
    .woocommerce-page .summary .cart button {
        min-width: 80px;
        width: 48%;
    }
    }

    Regards,
    Ismael

    #529854

    Hi Ismael,

    Alsmost perfect!.

    Please check on a mobile device it loooks great on scaled PC screen, but on mobile (android device there is stil a white space befor the grey button

    http://www.celebrationevents.nl/shop/verlichting-huren/led-verlichting/led-uplighters-op-accu/

    #529857

    I already fixes it with

    @media only screen and (max-width: 767px) { .woocommerce-page .summary .cart button {
    margin-top: 10px !important;
    margin-left: -10px !important;
    }
    }

    Thanxs once again

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Button on next line’ is closed to new replies.