• Hi! I have a link to a dropbox link set up on a resume page: https://www.raquelsuarez.com/resume/ yet, if you click on the “Click here” link that I’ve set up, it only goes back to the home page. I’ve tried to remove the www from it since I’ve heard that has helped other people with this issue, but it hasn’t resolved mine. Any advice? Thanks! Danielle

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi, The click on “Click here” is being captured by the logo element which is sized so that it covers this link. Its the logo’s link that is being followed. I have analysed your css with the W3C CSS validation service and there are multiple issues. Have you altered the theme css? If not then you may need the theme author to sort it out.

    Thread Starter danbon

    (@danbon)

    I created a child theme and have modified some of the CSS in the Custom CSS panel of the theme settings. The changes I’ve made are below. Maybe the logo padding is the issue? So frustrating! Thanks for the information!
    table tr:nth-child(odd) td {
    background-color: transparent; color: inherit;
    }
    table#t1 tbody tr td, table#t1 tfoot tr td{ color: #000; }
    table#t2 tbody tr td, table#t2 tfoot tr td{ color: #000; }
    table#t3 tbody tr td, table#t3 tfoot tr td{ color: #000; }
    table#t4 tbody tr td, table#t4 tfoot tr td{ color: #000; }

    nav.main_menu>ul {
    left: 0;
    }
    @media only screen and {nav.main_menu ul li a{padding: 0 7px;}}

    Your css is causing the logo div to overlap the Click here element.

    .logo {top:50%}

    The image has been moved up to compensate:

    .logo img {top:-50%}

    I think you either need to take out these two lines or override them in your custom css with

    .logo {top:0}
    .logo img {top:0}

    There is a parse error in your line:

    @media only screen and {nav.main_menu ul li a{padding: 0 7px;}}

    there should be a second condition between “and” and “{“, for example:

    @media only screen and (max-width:590px) {
      nav.main_menu ul li a{padding: 0 7px;}
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘External links not directing, only going back to home page’ is closed to new replies.