• Resolved tepes1406

    (@tepes1406)


    Hi there!
    This morning I was changing the settings of my right sidebar and, suddenly, the links os chrome are not clickable anymore (they wok well on IE).

    I always edited my sidebar directly in the sidebar-right.php file but this morning I tried to change its appearance using some widgets. After that, links doesn’t work anymore.

    Please help me… I don’t know where to begin.

    The site address is:

    howicuredmyulcerativecolitis.com

Viewing 8 replies - 1 through 8 (of 8 total)
  • I would begin by learning some version control 😉

    You have a DIV id=credits which seems to be covering the whole site? If I remove credits div using inspect element I can now click 🙂

    #credits {
    color: #D7D7D7;
    font-size: 10px;
    text-align: center;
    padding: 12px;
    opacity: 0;
    }

    All I did was remove the opacity value and I can then click.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Add;

    #credits {
     clear: both;
    }

    Thread Starter tepes1406

    (@tepes1406)

    Wow… thanks a lot!

    But I still can’t understand why opacity prevented me from clicking on links… it was set only for #credits. And on IE it worked well!

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Your credits HTML was positioned on top of your other elements, probably due to floating of those elements. This can be illustrated by adding the following styles (and removing clear: both) ;

    #credits {
     position: relative;
     background: red;
    }

    The positioning was changed when you added clear: both; to it.
    Now it sits underneath your floated elements.

    try adding

    pointer-events:none;

    Thread Starter tepes1406

    (@tepes1406)

    OK… now it’s all clear!

    Thanks a lot! 🙂

    No problem

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Links doesn't work on mywordpress site’ is closed to new replies.