• Resolved HenkKuiper

    (@henkkuiper)


    Hello,
    I’m working on a webshop with a Headway template. The Wocommerce displays the regular prise an the sale price below each other.

    I want them to be in one row next to each other.

    I want to do this in CSS. Does anyone know how to do this?

    http://demoshop.webdesignnl.com/

    Thanks!
    Henk

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi HenkKuiper,

    After checking your site, I didn´t find both price displayed together.
    Maybe as an administrator you can see the at the same time, but as a visitor you can´t.

    😉

    Thread Starter HenkKuiper

    (@henkkuiper)

    Hello bensita,

    On the page “Winkel” bottom row of the products the on sale product.
    Thanks,
    Henk

    Right!

    You can try this:

    .woocommerce ul.products li.product .price del {
        color: inherit;
        opacity: .5;
        display: block;
        float: left;
        margin-right: 10px;
    }

    Please noticed that I only add this 2 properties:

    float: left;
    margin-right: 10px;

    Are you using a child theme? If you are not, be aware that any customization will be gone after updating your theme.
    You can check how to create a child theme here:
    https://codex.wordpress.org/Child_Themes

    Hope that helps!

    Thread Starter HenkKuiper

    (@henkkuiper)

    Hello bensita,

    It works!! Thank you!!

    I use Headway themes, with custim CSS so no need to create a child theme.

    Thank you!
    Henk

    Hi HenkKuiper,

    I´m glad that I helped you!
    Please mark this topic as resolved 😉

    Thread Starter HenkKuiper

    (@henkkuiper)

    Done

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Woocommerce template’ is closed to new replies.