Forum replies created

    Roman
    Spectator
    Posts: 3147
    May 25, 2019 at 10:33 am #43671

    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 😉

    Roman
    Spectator
    Posts: 3147
    May 25, 2019 at 10:32 am #43670

    Please check the plugin widget docs, this is not a theme issue. Thanks

    In reply to Side Bar
    Roman
    Spectator
    Posts: 3147
    May 24, 2019 at 6:01 pm #43661

    welcome 🙂

    Roman
    Spectator
    Posts: 3147
    May 24, 2019 at 5:14 pm #43660

    I corrected the CSS, please check. the #primary css rule must be under the 768px condition as well 😉

    Roman
    Spectator
    Posts: 3147
    May 24, 2019 at 3:32 pm #43656

    Please try this Additional CSS:

    .navbar-toggler .icon {
        color: white;
    }
    Roman
    Spectator
    Posts: 3147
    May 24, 2019 at 3:22 pm #43655

    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;
    }
    }
    Roman
    Spectator
    Posts: 3147
    May 24, 2019 at 3:13 pm #43654

    Yes, I have read and provided solution 😉

    Roman
    Spectator
    Posts: 3147
    May 24, 2019 at 3:11 pm #43653

    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/

    In reply to Side Bar
    Roman
    Spectator
    Posts: 3147
    May 24, 2019 at 10:51 am #43652

    #secondary-2 {}

    Roman
    Spectator
    Posts: 3147
    May 23, 2019 at 5:08 pm #43647

    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%;
      }
    }