I can not click on the bottom sidebar in Wordpress

1

I'm setting up a web in Wordpress and I have a problem with the bottom sidebar, in the bottom bar where the widgets are, I can add and modify them without problem, but then the links do not work or a form that I added in the widget, it's like it's an image, it does not let you interact with anything. Does anyone know what it can be?

This is the code snippet where the problem occurs:

<div id="bottom" >
    <ul>
        <li><a href="#">Conductor</a></li>
        <li><a href="#">Animales peligrosos</a></li>
        <li><a href="#">Seguridad privada</a></li>
        <li><a href="#">Deportistas</a></li>
    </ul>
</div>

And this is the css applied to it:

#bottom {
  z-index: -1;
}
    
asked by Zafiro 04.04.2018 в 11:25
source

1 answer

0

You have the following rule css :

#bottom {
    z-index: -1;
}

that you apply in this div:

<div id="bottom" class="cmsmasters_color_scheme_footer">

This causes the content to be moved back and therefore the links are not accessible, simply delete the id of the div:

<div class="cmsmasters_color_scheme_footer"> 

and both the links and the form will work.

Another solution is to remove this rule from the file wp-content/themes/medical-clinic/theme-framework/theme-style/css/style.css (this is recommended only if it is not used elsewhere)

And as a recommendation I would add that you edit the question by adding the code css and HTML so that the question is not deleted and may be useful for someone in the future and not just for you now.

    
answered by 04.04.2018 / 11:46
source