Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #522223

    Hi!

    Here I am again with another issue… ;-)

    In the product overview is shown the tax and shipping options like this one:

    Enthält
    19% MwSt.
    zzgl.
    Versand

    but I would like to set it in one line without breaks like this one:

    Enthält 19% MwSt. zzgl. Versand

    Translation:
    Enthält = includes
    MwSt. = VAT
    zzgl. = plus

    Best wishes
    Kai

    • This topic was modified 9 years, 1 month ago by vollstark.
    #522501

    Hey vollstark!

    Send us a link to your page and we’ll take a look. You can set your reply as private if you wish.

    Best regards,
    Elliott

    #522521

    Oh sorry. Yes :-)

    http://vollstark.de/shop/

    #523124

    Hi!

    Add this to your custom CSS.

    .woocommerce_de_versandkosten a {
        display: inline !important;
    }

    Cheers!
    Elliott

    #523502

    Hi!

    Thanks.

    This delete only the break between “zzgl.” and “Versand”. Now it looks like this:

    ab: 1,45 € pro Stück Enthält
    19% MwSt.
    zzgl. Versand

    But I would like to have that:

    ab: 1,45 € pro Stück
    Enthält 19% MwSt. zzgl. Versand

    Have you got an idea?

    Cheers!
    Kai

    #523957

    Hey!

    Add this.

    .price * {
        float: left;
        margin-right: 5px;
    }

    Cheers!
    Elliott

    #524034

    hm… it doesn´t work :-(

    • This reply was modified 9 years, 1 month ago by vollstark.
    #524040

    Hi!

    I don’t see it added on your site. Add it to the top of Dashboard > Enfold > General Styling > Quick CSS and then clear your cache. If your using a caching plugin then be sure to clear it’s cache as well.

    Regards,
    Elliott

    #524044

    now it´s added. But it looks strange ;-)

    • This reply was modified 9 years, 1 month ago by vollstark.
    #524045

    Hey!

    It’s because you changed the line height for certain elements.

    .amount {
        margin: 0 !important;
        text-align: left !important;
        line-height: 30px !important;
        text-transform: uppercase !important;
        font-size: 18px !important;
    }

    That will make some look bigger than others if they are on the same line. You’ll want to give them all the same line height I imagine.

    Cheers!
    Elliott

    #524049

    Ok, I deleted these “Script” but it is not really better. Please have a look at now.

    #524661

    Hey!

    Please try this instead:

    div .products .product .price a {
        display: inline !important;
    }

    Best regards,
    Ismael

    #524717

    Good morning.

    That works fine :-)

    And now I need a break after “pro Stück”.

    ab: 1,45 € pro Stück (BREAK)
    Enthält 19% MwSt. zzgl. Versand

    Do you have any further ideas?

    All the best
    Kai

    #525329

    Hey!

    Add this:

    div .products .product .price > a span + span + span {
        display: block !important;
        width: auto;
        float: left;
    }
    
    .woocommerce_de_versandkosten {
        float: left;
    }

    Regards,
    Ismael

    #525353

    Hi!

    fantastic :-))

    Thank you very much!

    All the best,
    Kai

    #525440

    uahh, but now it´s twisted in the single product view :-(

    And on smartphones the same :(

    • This reply was modified 9 years, 1 month ago by vollstark.
    #526542

    Hi!

    Could you please provide a screenshot of the issue? Or a link to the product page? Try to replace the code with this:

    .archive div .products .product .price > a span + span + span {
        display: block !important;
        width: auto;
        float: left;
    }
    
    .archive .woocommerce_de_versandkosten {
        float: left;
    }

    Cheers!
    Ismael

    #526595

    Hi!

    With the code from your post #525329 it looks like this:

    With the code from your last post on iPhone it´s ok and the single product view too.
    In the product catalogue it´s the same like before.

    But I can live with one of your versions :-)

    #527703

    Hey!

    glad you are happy now. Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.

    Best regards,
    Andy

Viewing 19 posts - 1 through 19 (of 19 total)
  • The topic ‘Alignment of shipping and VAT’ is closed to new replies.