skip to Main Content

Is it possible to remove the logo or whole header from an external page which is embedded in my WordPress website? I don’t where to place display: none; in which css.

https://drvoprom.com.mk/vizualizer

2

Answers


  1. Put the display:none as shown in image.
    OR

    .header-classic #Top_bar {
        background-image: url(http://drvoprom.com.mk/wp-content/uploads/2021/05/header-bg-full.jpg);
        display: none;
    } 
    

    Thank You!

    display: none

    Login or Signup to reply.
  2.  #logo {
         display: none !important;
     }
     #pagouni { 
         display: none !important;
     }
    

    I have shared with you CSS add this in your style and try.

    Most of the iframe CSS will not get changed because all files are serving from another server so you can’t overwrite that file.

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