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

    Hello everyone,

    I have added the Header Widget Area to our site using the Enfold Child Theme and CSS code. Buttons are created in the widget area that move with the scrolling. The problem is that these and other buttons seem to be “overlaid” by the Header Widget Area and can only be clicked if you scroll down a bit.

    Do you know a solution for this or do you need access to the WordPress admin area?

    Many thanks and best regards

    Patrick

    #1328351

    Hi Patrick,

    Could you post a link to where we can see the problem you are having please?

    Best regards,
    Rikard

    #1328354

    Hello Rikard,

    Thanks for the quick reply
    Attached is the link to a page where there are problems. Here it is so that if you scroll further down you cannot select a tab from the tab section.

    I hope this helps to clarify the problem.

    Best regards

    Patrick

    #1328416

    Hi,

    Thanks for that. It looks to be the floating buttons which are causing problems. Please try this in Quick CSS to see if it helps:

    #custom_html-5 {
          top: -200px;
    }

    If not, then it might be better to place that content in for example header.php, which you can override in a child theme.

    Best regards,
    Rikard

    #1328452

    Hello Rikard,

    thank you for the help, unfortunately the Quick CSS is not working.

    Can you tell me how to add the floating buttons into the header.php?

    Many thanks and best regards

    Patrick

    #1328499

    Hi,

    You can try to add your code below the body tag in header.php, to see if it works from there. You could also add it using a function in functions.php if you prefer that:

    function add_floating_buttons_below_body_tag() {
    ?>
    YOUR CODE GOES HERE
    <?php
    }
    add_action('wp_body_open', 'add_floating_buttons_below_body_tag');

    Best regards,
    Rikard

    #1335985

    I fixed it with your help.

    thanks a lot

    #1335994

    Hi,

    Great, I’m glad that we could help. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

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