Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #297912

    First of all, many thanks to the whole kriesi-team for creating such a great theme!

    I have a minor but signifcant issue. On the checkout page the checkbox and the text “Ich habe die Liefer- und Zahlungsbedingungen (AGB) gelesen und bestätige diese hiermit.” should be above the “Bestellung abschicken”-button and not below, as it is now. Moreover it should be left indent, not right indent as right now.

    I would be really grateful, if you could provide a solution for that!

    Many many thanks in advance!

    Kind regards
    Andreas

    #297980

    Hey DuriaGlobal!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #top #payment .terms { padding: 0; text-align: left; position: relative; top: -65px; }

    Best regards,
    Yigit

    #298119

    Dear Yigit,

    many thanks for your fast reply! Thats customer service at its best!

    The problem is almost solved. I have just two more questions regarding this:

    1. Is it somehow possible to put the checkbox in front of the text (left) and not behind the text (right).

    2. Is it possible to make more space between the block with the payment methods and the “Bestellung abschicken” button, as after your solution the AGB-text looks like squeezed in above the “Bestellung abschicken” button.

    Again many thanks for your great support and help!

    Have a great day!

    Regards
    Andreas

    #298591

    Hey Andreas!

    Try using this code instead:

    #top #payment .form-row.terms {
        clear: both;
        padding: 10px 0 !important;
        display: block;
        text-align: left; 
        position: relative; 
        top: -65px;
    }
    
    #top #payment .form-row.terms input[type='checkbox']{
        float: left !important;
        position: relative;
        top: 6px;
    }
    
    #top #payment input#place_order {
        top: 20px;
        position: relative;
    }

    Cheers! 
    Josue

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.