From b9bef3535648bb949edd5c19b587db38084cdcc4 Mon Sep 17 00:00:00 2001 From: Andrew Engelbrecht Date: Mon, 5 Aug 2019 18:24:39 -0400 Subject: [PATCH] fix auto clear issue for custom 2 colum mode the .col-xs-12 divs are placed in a two-column mode for some screen sizes. this patch adapts the general auto-clear css code in this repo to this specific case. --- css/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/css/style.css b/css/style.css index b0a5f29..740b0de 100644 --- a/css/style.css +++ b/css/style.css @@ -240,6 +240,7 @@ a { transition: 0.3s; } max-width: 300px; float: left; } + .auto-clear .col-xs-12:nth-child(odd){clear:left;} } -- 2.25.1