• Resolved rangoon

    (@rangoon)


    Hi. little help is needed.
    Sticky add to cart should be visible after copywrite line at the bottom. But the sticky add to cart is overlapping that copywrite line on both devices.

    Looking for a solution to put it down under the copywrite line.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author addonsplus

    (@addonsplus)

    Hello rangoon,

    Thank you for using our plugin we are happy to help you.
    We have visited the website and we noticed the copyright line is under the bar.
    On other pages this is not issue because the bar is not visible and copyright section appears normal.

    The fix:
    Add CSS on product page footer only
    Add CSS margin-bottom:58px; for the desktop view
    Add CSS margin-bottom:108px; for the mobile view

    Let us know if this fixes the issue or not.

    With Regards,
    Team AddOns Plus

    Thread Starter rangoon

    (@rangoon)

    That thing didn’t worked.

    Footer is same for all the pages. How we gonna give that margin just to the product page foother only?

    Please explain it.

    Plugin Author addonsplus

    (@addonsplus)

    Hello @rangoon,

    This is how you can make this work.

    First, add the class to the footer of the website. let say .custom-footer-margin
    (You add this to the templates file from the theme code > footer.php
    It can be a different file based on the theme.)

    After that go to the sticky bar plugin folder > templates > cart.php

    Go to line 245

    add the above-mentioned CSS like this

    .custom-footer-margin {
    margin-bottom:58px;
    }
    @media only screen and (max-width: 768px){
    .custom-footer-margin {
        margin-bottom:108px;
    }
    }

    This will only add CSS properties to the product page.

    Feel free to ask any questions you may have.

    Also, let us know above method works or not so we can manage the status of this support thread.

    With Regards,
    Team AddOns Plus

    NOTE: Any future theme or this plugin update will replace the code so you need to make sure to apply these steps every time you update the theme and this plugin.

    Plugin Author addonsplus

    (@addonsplus)

    Hey there @rangoon,

    We hope you are having a successful day.

    Did you try to implement the above steps?

    Let us know the status of the issue.

    With Regards,
    Team AddOns Plus

    Plugin Author addonsplus

    (@addonsplus)

    Hey there @rangoon,

    We hope you are having a successful day.

    We are closing this ticket and marking it as resolved and we hope you implemented the above fix.

    If you again face an issue in this or any other area of our plugin feel free to open a thread again.

    With Regards,
    Team AddOns Plus

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Sticky add to cart should be visible after copywrite line at the bottom’ is closed to new replies.