Home Forums WoodMart support forum Store notice

Store notice

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #147096

    jraudus
    Participant

    I just updated the theme and my store notice has disappeared and left a white bar, which stays there even if i disable the store notice in customiser.

    Attachments:
    You must be logged in to view attached files.
    #147140

    Hello,

    Now I clearly see the notice https://prnt.sc/pbxcqt Please check again and clarify the issue.

    Best Regards

    #147220

    jraudus
    Participant

    I have disabled the store notice in customiser. Deleted all website cookies. And re-enabled store notice.

    The issues I am having is:

    1. The notice no longer hovers at the bottom of the page. It now sits below the footer, so cannot be seen without scrolling to the bottom of the page.

    2. There is no background colour. It was purple, before the theme update.

    3. There is no button (X) to close the bar, in the right-hand corner.

    The previous notice looked much more like the green “view cart” bar, I have provided a screenshot of.

    Attachments:
    You must be logged in to view attached files.
    #147333

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    .woocommerce-store-notice {
      position: fixed;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 341;
      margin: 0;
      padding: 12px 60px;
      color: #FFF;
      text-align: center;
      font-weight: 600;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
        background-color: rgba(157, 98, 252, 0.89);
    }
      .woocommerce-store-notice .woocommerce-store-notice__dismiss-link {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        background-color: rgba(0, 0, 0, 0.1);
        color: #FFF;
        font-size: 0;
        transition: background-color .25s ease; 
    }
        .woocommerce-store-notice .woocommerce-store-notice__dismiss-link:after {
          font-weight: 600;
          font-size: 14px;
          content: "\f10f";
          font-family: "woodmart-font";
     }
        .woocommerce-store-notice .woocommerce-store-notice__dismiss-link:hover {
          background-color: rgba(0, 0, 0, 0.2); 
    }

    We shall fix the issue in our nearest update.

    Best Regards

Viewing 4 posts - 1 through 4 (of 4 total)