I want to change typeform Button (embedded) position or at least change the iframe gotten by typeform height.
You can see my essay here in this question Cannot select iframe loaded
var iframe = document.querySelector('iframe[src*="typeform"]');
I expect to get a button a little bit higher but the default is not what is expected I have solved the problem using selectors level 3
The solution
iframe[src*="typeform"] {
min-height: 94% !important;
max-height: 94% !important;
}
I have added the answer below original post Cannot select iframe loaded
Thanks in advance
I have solved the problem using selectors level 3 Hope help anyone else
iframe[src*="typeform"] {
min-height: 94% !important;
max-height: 94% !important;
}