Denzel Chia
    Moderator
    Posts: 2656
    22.11.2015 at 07:25 #22273

    Hi,

    Please provide a screenshot with annotation pointing to the text that you want to reduce the size.

    Thanks!

    Andrea Ianzini
    Spectator
    Posts: 2
    22.11.2015 at 17:10 #22279
    Denzel Chia
    Moderator
    Posts: 2656
    23.11.2015 at 06:54 #22286

    Hi,

    Please use the following codes in Theme Options -> Custom CSS

    .myaccount_user_container .view-cart {
    display: none !important;
    }
    .woocommerce-checkout .promo-code-heading {
    font-size: 16px !important;
    }

    The codes are for removing the view cart button and reducing promotion code heading font size.

    There is no way to use css to move elements up to the header. You need to modify theme codes. We do not provide support for modifying theme codes.

    Thanks!

    Andrea Ianzini
    Spectator
    Posts: 2
    23.11.2015 at 20:40 #22316

    i resolve with the size font but why the upper table is differt of bottom table?

    “Il tuo ordine” is differ of “dettagli di fatturazione” the border

    Denzel Chia
    Moderator
    Posts: 2656
    24.11.2015 at 05:48 #22333

    Hi,

    That empty column on your right is for shipping address fields. There could be something wrong with your woocommerce settings, which is why that column shows up but it’s empty.

    If you do not require shipping address, you can use the following css to hide it.

    #customer_details .col-2 {
    display: none !important;
    }
    #customer_details .col-1 {
    width: 100% !important;
    }

    Thanks!