skip to Main Content

I am new to wordpress

I am using elementor page builder in WordPress, and when I select any image it comes with a border. even when I am making the border for image as ‘none’ still it is not going away

enter image description here

Here is the the CSS code which is getting applied as border style solid!
My question is why this bug? and if I have to override it?

enter image description here

2

Answers


  1. Change

    body.elementor-kit-99
    img {
    border-style: none;
    }
    

    Copy and paste this in your theme custom CSS area

    Login or Signup to reply.
  2. I was able to solve this problem by accessing the global theme style option in the elementor page builder.
    Over there just go to Image Option and make the border option “none” this resolved the problem as it was a global CSS applied to entire website.

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