I would like to know how I can modify the CSS of tags and classes that are within a iframe
, I have found solutions in JavaScript, but I am not able to make them work.
Specifically I want to make the links below the pop up that comes out when I click on the flags, the CSS I have:
.ql-snow .ql-editor a {
text-decoration: none;
color: brown;
padding: 10px;
border: 1px solid brown;
display: inherit;
text-align: center;
border-radius: 3px;
}
I also want to put a background image
.si-content-wrapper {
background-image: url(http://casonacalderon.com/wp-content/uploads/2017/07/69896840-papyrus-wallpapers.jpeg);
}
But as I say, I'm not able to get to those tags to modify them, I know that through CSS I can not, but I've seen possible solutions in JavaScript.