Site logo

Archived topic

A lot of 'empty space'

3 replies · Started by Jos on June 3, 2021

Viewing posts 1–4 of 4

Hi,

Last time you quickly and effectively helped me, so I'll try again, this might just be a simple problem.

Two web designers implemented a landing page for an online course on my website: https://www.josnierop.nl/product/online-cursus/

We can't figure out how to get rid of the space on the right side of the pages... You can scroll to the right and there's a lot of useless space. Any ideas?

Also on checkout: https://www.josnierop.nl/afrekenen/

Thanks,

Jos

Hi there,

looks like this CSS that is coming from the margmedia cusrsus plugin (?):

.woocommerce label {
    display: block;
    width: 100%;
    font-weight: 700;
    color:#000 !important
}

The width: 100%; property is the problem.

Try adding this CSS to fix that:

.woocommerce label {
    width: auto !important;
}

And again a perfect solution, thank you :)

Glad to be of help

This archived topic is closed to new replies.