Hello @zz102p,
Good day! Really sorry for the delay in reaching you.
I’m glad to hear that the previous code worked for you. Regarding your last query about the mobile device, since this icon is provided by Google, it is not possible to remove the icon from the PDF. That’s why we provided you with the CSS code to disable the icon’s ability to open in a new tab and also set a background color to make it appear hidden as per your request.
But in mobile, PDF takes the full container, so it changes the icons position and It’s not possible to appear this hidden through background color. As you can only do, you can leave this icon transparent for mobile but the new tab won’t work. And also for the height, kindly use the below CSS.
@media only screen and (max-width: 767px){
.ose-google-drive iframe {
height: 400px!important;
}
.ose-google-drive:after {
background: #20202000 !important;
}
}
Hope it helps. Let me know how it goes.
Thank you!