skip to Main Content

How to remove a line from elementor plugin frontend-lite.min.css file without editing this file?

This is the style

.elementor iframe
{ width: 100%;
  margin: 0;
}

If I want to remove this line:
,width: 100%;, is there anyway I can do that without editing the css file?
I try to give width different value, but none of them work in my situation. The only way to fix my problem is to remove this line.

Thank you.

2

Answers


  1. Try to change it by JavaScript or using jQuery. Catch it by class name ex.

    document.getElementsByClassName('elementor iframe').style.width = "width you want";
    
    Login or Signup to reply.
  2. Link your preferred CSS class attributes in a file after the Library

    Example:

    <link rel="stylesheet" href="library.css">
    <link rel="stylesheet" href="style.css"> <- Your CSS file with preferred attributes

    Or alter with JS DOM

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