By default, 15px of padding is added to the left and right of the Listing Feed container. The padding at the right is not a problem, but the left padding causes the leftmost Listing to not line up flush to the left with other elements (heading, paragraph, etc.) you place above or below.
This code snippet removes the left padding so things can line up at the left if you prefer that look. Otherwise, the Listing Feed widget will be slightly indented.
- Edit the 27 > Listing Feed widget.
- Advanced Tab > Layout > CSS ID > Add ‘lfeed’ as the value.
- Grab the code snippet below and add it to your website.
Grid Template
#lfeed div.container-fluid {
padding-left: 5px;
}Carousel Template
#lfeed div.container {
padding-left: 5px;
}