skip to Main Content

The Issue

I’m facing a problem with my WordPress website designed using Elementor and an Envato template. Divider lines are appearing between my headerand footersections, which makes my website look unattractive as my logo and navigation bar are positioned under these lines. Additionally, there’s a footer divider line displaying ‘Powered by WordPress,’ and I want to remove it. How can I resolve these divider line issues and improve the overall appearance of my website? Any assistance is appreciated. Thanks!

This is what it looks like:

Headerenter image description here

Footer enter image description here

2

Answers


  1. Share your website link So can check into code and let you know the solutions

    Login or Signup to reply.
  2. find their css classes and force 0px for them on custom CSS:

    .footer { border-top: 0px !important; }
    
    .header { border-bottom: 0px !important; }
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search