---
title: "Custom CSS"
date: 2025-09-13
author: "Jeroen Moolenschot"
---

# Custom CSS

Here you can add your own styling rules.

 ![pricelist custom css](https://joomill-templates.com/images/documentation/pricelist/pricelist-custom-css.png)

 
## 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;  
}

  

  

  
