[Resolved] change the position os woocomerce store notice message

Home Forums Support [Resolved] change the position os woocomerce store notice message

Home Forums Support change the position os woocomerce store notice message

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #2313784
    Toni

    Hi, i have the “niche” theme into woocomerce and generatepress.

    I need to use the store notice, but it overlaps the web´s top menu.
    How can I change the position of the store notice from top to bottom of page?
    I tried with css but it didn’t work.

    Thanks for your help and sorry for my bad english.

    #2313806
    Ying
    Staff
    Customer Support

    Hi Toni,

    I don’t think it’s possible.

    Does the store notice need to be able to be dismissed?

    If not, you can try using the topbar.

    #2313840
    Toni

    The woocomerce sotre notice is for limited offers, etc. but in the top overlap the menú. And yes, should be able to close or dismiss.

    #2313848
    Ying
    Staff
    Customer Support

    And yes, should be able to close or dismiss.

    Then I don’t think there’s an easy way without custom development.

    The feature is from Woocommerce, not GP.

    #2313872
    Toni

    in others forums says:

    “The store notice location is largely dependent on the theme you’re using; To move that would either be done using your theme settings or custom CSS.”

    don’t worry. I’ll look for an alternative.

    Thanks for all.

    #2313881
    Ying
    Staff
    Customer Support

    The only workaround I can think of is to use this CSS, but it will make the notice sticky at the top.

    p.woocommerce-store-notice.demo_store {
        position: sticky;
        top: 0;
        order: -1;
    }
    body {
        position: relative;
        display: flex;
        flex-direction: column;
    }

    Give it a try and let me know if it works.

    #2315032
    Toni

    perfect. seems to work. Thanks.

    #2315059
    Ying
    Staff
    Customer Support

    Glad to hear that 🙂

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.