Hey,
when i pull file i've write that i don't know where i must add style code.
And it seems you don't add style required by clear:left" function too.
So that doesn't work.
We have diiferent choice to add this style :
- Add a news CSS file with our custom css code. (best choice i think)
- Add this style at the end of bootstrap.css file
- Tell user to add manually style in their theme/styles.css
/* Small devices (tablets, 768px and up) */
@media (max-width: 767px){
.clear-xs{clear:left;}
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
.clear-sm{clear:left;}
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px){
.clear-md{clear:left;}
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
.clear-lg{clear:left;}
}
Hey,
when i pull file i've write that i don't know where i must add style code.
And it seems you don't add style required by clear:left" function too.
So that doesn't work.
We have diiferent choice to add this style :
/* Small devices (tablets, 768px and up) */
@media (max-width: 767px){
.clear-xs{clear:left;}
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
.clear-sm{clear:left;}
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px){
.clear-md{clear:left;}
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
.clear-lg{clear:left;}
}