999ANDRE999 Posted February 22, 2017 at 10:35 AM Report Share #602700 Posted February 22, 2017 at 10:35 AM Viva pessoal! Tenho na minha página um widget de meteorologia dentro de um iframe. Acontece que no canto superior direito aparece o logotipo do provedor do widget, e neste sinte não é permitido "publicidade". já que o widget tem fundo branco, a minha ideia era sobrepor nesse pedaço uma imagem em branco para tapar o logotipo. Alguém me sabe dizer como posso fazer isso? Obrigado. 👍 Link to comment Share on other sites More sharing options...
ribeiro55 Posted February 22, 2017 at 11:06 AM Report Share #602701 Posted February 22, 2017 at 11:06 AM O logotipo está lá por alguma razão. Podes vir a ter problemas legais. De qualquer forma, basta-te fazer um pequeno jogo de CSS, por exemplo: <!DOCTYPE html> <html> <head> <title></title> <style type="text/css"> .wrapper { position: relative; width: 800px; height: 500px; } .wrapper .coverup { position: absolute; width: 100px; height: 50px; z-index: 10; bottom: 5px; right: 5px; background-color: #fff; } .wrapper iframe { z-index: 5; width: 100%; height: 100%; } </style> </head> <body> <div class="wrapper"> <div class="coverup"></div> <iframe src="http://www.sergioribeiro.com"></iframe> </div> </body> </html> Poderá ser mais fácil remover o logotipo via JS se for um elemento no DOM. Para isso já o tinhas de mostrar para se poder analisar. Sérgio Ribeiro "Great coders aren't born. They're compiled and released""Expert coders do not need a keyboard. They just throw magnets at the RAM chips" Link to comment Share on other sites More sharing options...
999ANDRE999 Posted February 23, 2017 at 11:24 AM Author Report Share #602713 Posted February 23, 2017 at 11:24 AM isto é uma página intranet. Ninguem externo à organização tem acesso a ela. o meu iframe está assim: <p class="style2"> <iframe ID="tempo" runat="server" src="https://www.meteoblue.com/en/weather/widget/three/vila-real_portugal_2732438?geoloc=fixed&nocurrent=0&noforecast=0&days=7&tempunit=CELSIUS&windunit=KILOMETER_PER_HOUR&layout=bright" frameborder="0" scrolling="YES" allowtransparency="true" sandbox="allow-scripts" style=" width: 805px; height: 621px"></iframe> <div> <!-- DO NOT REMOVE THIS LINK --> <a href="https://www.meteoblue.com/en/weather/forecast/week/vila-real_portugal_2732438?utm_source=weather_widget&utm_medium=linkus&utm_content=three&utm_campaign=Weather%2BWidget" target="_blank"></a></div> </p> Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now