admin管理员组

文章数量:1394174

I inherited the administration of a site and want to make a few changes. It has a great customized theme that I want to keep. The first thing I want to change is an outdated footer. I uploaded my new footer image to the media library, copied the url, and went to the style.css page and commented out the old url and added the new one.

.footerimage {
    /*  background-image: url("/wp-content/themes/region2coastal/images/fema_rampp_logo.png"); */
    background-image: url("/wp-content/uploads/2020/02/Logo.png");
    background-repeat: no-repeat;
    background-position: center top;
    width: 100%;
    height: 92px;
    background-size: auto;
} 

I Updated but the old footer image is still showing. I am assuming that I need to somehow add the new footer image to /wp-content/themes/region2coastal/images folder but I can't seem to figure out how to do that. Any suggestions on how to get this working?

本文标签: How to change a theme39s footer image