• Resolved resafm

    (@resafm)


    For every link inside a paragraph, I have the same issue when we hover it: the link either breaks into a new line or it simply isn’t recognised as one…
    The weirdest thing is that I’ve tried to run the same code in an editor and it works fine…
    I’m quite puzzled by this and I’d be so grateful by any help given. Thank you in advance!

    • This topic was modified 6 years, 9 months ago by resafm.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • it because of this css rule

    .dropdown-child:focus-within>a, a:hover {
        visibility: visible;
        opacity: 1;
         display: block;
    }

    when the code is set to block it wants to occupy the entire line try changing display block to display:inline;

    .dropdown-child:focus-within>a, a:hover {
     display:inline;
    }
    • This reply was modified 6 years, 9 months ago by mrtom414.
    Thread Starter resafm

    (@resafm)

    Thank you so much!! It works just fine now!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Weird link problem inside p’ is closed to new replies.