Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #295580

    Antoine
    Participant

    Hi,

    It might not be part of the support but I thought you might be aware of this and therefore able to help me. I installed the plugin Digg Digg (Floating Social plugin) and the floating bar display to high when I scroll down the pages. Here is how it looks like and how I like it to be (green):

    I like this floating sharing bar and I hope to be able to fix the problem. I will otherwise have to remove it has it doesn’t really look good now.

    Thanks for your help.

    #295782

    Christopher
    Moderator

    Hi there,

    Please add the following CSS under Customize -> Custom -> CSS :

    .dd_outer {
      top: 80px;
    }

    Hope it helps.

    #296332

    Antoine
    Participant

    It works, thanks.

    Is there a way to have the floating bar going under the Navbar when arriving at the end of a page?
    The yellow part should be hidden by the Navbar:

    Thanks!

    #296795

    Rubin
    Keymaster

    Thanks for writing in! Regretfully, we cannot provide support for third party plugins or scripts as our support policy in the sidebar states due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. We try to go above and beyond and that’s why we’ve helped you with your previous issue.

    Try adding following to the Customizer > Custom > CSS section:

    .dd_outer { z-index: 1000; }

    Thank you for your understanding.

    #297504

    Antoine
    Participant

    It works great, thanks!

    My last question regarding Digg Digg (but it concerns all other plugins in general) would be:

    – How can I deactivate the plugin on specific pages?

    Thanks.

    #298084

    Nico
    Moderator

    Hi There,

    Glad to hear that it is already working however on your next concern, disbabling a plugin in a specific page is beyond the scope of our suppport. We could try not to display the plugin in front-end. Would you mind sharing us the link concerning the issue.

    Thank you so much for understanding.

    #298418

    Antoine
    Participant

    We could try not to display the plugin in front-end.

    This is indeed what I’d like to achieve. Let’s take this page as an example:
    https://paleoflaneur.com/thank-you-beginners-guide/

    #298997

    Paul R
    Moderator

    Hi Antoine,

    We can use the page id.

    You can add this under Custom > CSS in the Customizer.

    
    .page-id-2239 .dd_outer {
        display:none;
    }
    

    Where 2239 is the page id.

    Here is how to locate your page id in case you need to hide it in another page

    https://community.theme.co//kb/how-to-locate-post-ids/

    Hope that helps.