• Hi guys ,

    Im having a problem with my side bar ( Terra Theme )

    On this page : https://excelforth.com/test/workshops-training/

    My side bar and its links cant be clicked , But my mailchimp portion is working , others are not )

    but when I go lower down the page , my side links seem clickable after the area where my page ends.

    Any idea on how to fix this problem?

Viewing 3 replies - 1 through 3 (of 3 total)
  • For some reason the page content container is 100% width, so although the background is transparent on it, it is over the sidebar.
    The Mailchimp widget is able to be clicked, because they have a z-index set on the form (z-index is depth, kinda like x and y axis, x right left, y up down, z forward back)

    In order to prevent this from happening with other widgets (And fixing the links in the process) add a z-index to your sidebar with css

    Head to Appearance -> Editor
    Add this at the bottom

    #sidebar
    {
    position: relative;
    z-index: 2;
    }

    But, since this will be updating the style.css, becareful when updating your theme because normally it overwrites the style.css.

    hii gunzbry,
    may be its because your “container” class property is set as position:relative in “https://excelforth.com/test/wp-content/themes/Terra/stylesheets/skeleton.css” at line no 24 once remove it and then check
    hope it`ll help you

    Thread Starter gunzbry

    (@gunzbry)

    THANKS GUYS!!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Sidebar Links not working’ is closed to new replies.