How To Hide Default background-image: url ?
-
What do you recommend to hide this url from appearing in all the pages source code? It’s the themes default background-image. I did add a different background-image: url(https://www.current-image.jpg) and the url appears twice in the pages source code and that’s okay.
I am trying to hide this url from appearing in the pages source code? When you right click and view source code this url continues to appear… I have deleted this image, but the default url appears in the source code.
{background-image: url(https://remove-hide-this-image-url.com/demo/wp-content/uploads/sites/2/2019/08/company-name.jpg)What code can I add in WP Appearance- customize- additional CSS to hide {background-image: url(https://remove-hide-this-image-url.com/demo/wp-content/uploads/sites/2/2019/08/company-name.jpg)
Thanks,
<style id=’themename-styles-inline-css’ type=’text/css’>
.breadcrumb_area{
background-image: url(‘https://www.current-image.jpg’);
}
.breadcrumb_area{
background-image: url(‘https://www.current-image.jpg’);
}/* addon: Welcome area *//* addon: Home Video Area */.company_video_area {background-image: url(https://remove-hide-this-image-url.com/demo/wp-content/uploads/sites/2/2019/08/company-name.jpg);}/* addon: Home Team */.our_team_area {background: #f0edf7;}
.logo.main img{
width: 87%;
}.header_area .logo2 img{
width: 87%;
}@media(max-width: 991px) {
.logo.navbar-brand img{
width: 100%;
}
.header_area .logo2 img{
width: 100%;
}
}</style>
- The topic ‘How To Hide Default background-image: url ?’ is closed to new replies.