Forum replies created
It’s not an issue. You required custom width of the sidebar and content. So the values have been set as required in the Additional CSS 😉
Please check the plugin widget docs, this is not a theme issue. Thanks
I corrected the CSS, please check. the #primary css rule must be under the 768px condition as well 😉
Please try this Additional CSS:
.navbar-toggler .icon {
color: white;
}
Try this Additional CSS:
@media (min-width: 576px) {
.products {
-webkit-column-count: inherit;
-webkit-column-count: inherit;
-moz-column-count: inherit;
column-count: inherit;
-webkit-column-gap: inherit;
-moz-column-gap: inherit;
column-gap: inherit;
orphans: inherit;
widows: inherit;
}
}
Yes, I have read and provided solution 😉
Hi Andreas, please make sure:
– your server is running a recent version of PHP and the cURL library
– try to increase your Server Memory Limits settings
– the cURL error can be a dns related issue. Your hosting company might need to switch dns configuration to OpenDNS – https://www.howtogeek.com/164981/how-to-switch-to-opendns-or-google-dns-to-speed-up-web-browsing/
for the side bar custom width, add extra code to define it for higher resolution devices:
@media (min-width: 768px) {
#secondary {
-ms-flex: 0 0 25.000000%;
flex: 0 0 25.000000%;
max-width: 25.000000%;
}
}