skip to Main Content

I’m creating a website for myself in WordPress using Elementor free plugin and Phlox theme. I’ve just started and completed a couple of sections. Each section has some text, buttons and some images. The issue I’m facing here right now is that when I open the website and move my mouse pointer inside the Webpage area, the text in all sections gets underlined just like any hyperlink but there is no hyperlink with any text. I’ve checked settings in customizations and other stuff in theme settings but nothing helped. I’m new on WordPress and don’t know how to debug this in any technical depth. Please have a look and tell me how can I fix this issue.

I can’t continue with these underlined text appearing all over my page.

Link : myWebPage

Any help is appreciated.

2

Answers


  1. Always attempt to use your browser dev tools to check these things. In your css you have this in your custom.css file. Dont know why its there but thats the cause

    body:hover {
        text-decoration: underline;
    }
    
    Login or Signup to reply.
  2. Try this:

    .csstransitions .aux-page-show-circle.aux-page-animation-done #inner-body, .csstransitions .aux-page-show-circle.aux-page-animation-done {
        height: auto;
        overflow: visible;
        text-decoration: none;
    }
    

    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search