Custom CSS

Here you can add your own styling rules.

Some common cases:

The paragraph has some white space (margin) below

.pricelist p {
    margin-bottom: 0px;
}

Set the category image left next to the category description

.pricelist .category-image {
    float: left;
    max-width: 200px;
    margin-bottom: 20px;
    margin-right: 20px;
}

Last updated