Tagged: header widget area
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
Hi Patrick,
Could you post a link to where we can see the problem you are having please?
Best regards,
Rikard
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
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
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
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
I fixed it with your help.
thanks a lot