I am trying to: Add widgets in the footer area
Link to a page where the issue can be seen: hidden link
I expected to see: My widget in correct width
Instead, I got:2 small and long columns
This seems to be a known bug when using toolset to load Bootstrap 4 and Wocommerce. I have seen some suggestions using CSS, but cannot make it work. Since i use the portfolio module i need the Bootstrap 4 for it to work
Hello,
There does exist some conflicts between Bootstrap and Wocommerce
But in your case, it seems to be a CSS conflict between your theme and Bootstrap, I have tested the URL you mentioned above, it works fine if disable those CSS codes from your theme file :
hidden link
.footer-widgets.col-4 .block {
width: 21.7391304348%;
...
}
See my screenshot css-conflict.JPG
Hi, i see the point, but i cannot disable the code as you suggest.
I use the customize panel for storefront to add CSS code, but get no effect.
I am not sure if its the correct syntax or just an axample, ther is 3 dots ... which perhaps indicate something missing
//lars
My issue is resolved now. Thank you!
It seems this syntax solved my problem, thanks for your support
.footer-widgets {
max-width: 100%;
}
.woocommerce-billing-fields .form-row, .woocommerce-shipping-fields .form-row,.woocommerce form .form-row {
display: block;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1,.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
max-width: unset;
}