Hello,@bibbi1!
If you want your logo appears only in the header area, you need to insert the .ironthm-header-middle
class, before the .pull-left
.
So your code should look like this:
.page-id-4473 .ironthm-header-middle .pull-left {
background-image: url(https://www.drzavnopravobranitelstvo.gov.mk/wp-content/uploads/2019/04/Small.png);
background-size: contain!important;
width: 448px;
height: 120px;
background-position: center;
background-repeat: no-repeat;
}
https://prnt.sc/nmtvzm
Also, I noticed that your blog post thumbnails are missing…to fix that
you need to insert same class in this code too,
.page-id-4473 .ironthm-header-middle .pull-left a img{
display: none;
}
If you want your logo to appear on all pages (and not just individual ones), you can use only these two codes for all pages:
.ironthm-header-middle .pull-left a img{
display: none;}
.ironthm-header-middle .pull-left {
background-image: url(https://www.drzavnopravobranitelstvo.gov.mk/wp-content/uploads/2019/04/Small.png);
background-size: contain!important;
width: 448px;
height: 120px;
background-position: center;
background-repeat: no-repeat;
}
in that case, you can freely remove all 25 codes you have previously inserted.
https://prnt.sc/nmu4hc
Hope this will help you.
Regards
-
This reply was modified 5 years, 10 months ago by
themevision.
-
This reply was modified 5 years, 10 months ago by
themevision.