• I am lost with this issue, when I click “contact us” it does not open the page all the time, often you have to click it two or three times before it opens and often it just wont open at all, please please I need help this needs to be fixed ASAP.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • It seems like an issue with your CSS or Javascript, on mouse-down/click, you are reducing the size of the anchor tag. So when you are clicking on it, the anchor is not receiving the click hence the problem.

    The ideal solution will be to remove the code that is reducing the size of the font of the anchor tag. Either you are doing it in JavaScript or CSS. You need to locate where.

    One quick solution is to set the width of the anchor tag to 100% so that it receives the click.

    If you know how to, add the CSS below:

    #output #sx a, a:visited, a:active {
        width: 100% !important;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Page not opening correctly’ is closed to new replies.