Title: Remove picture from template
Last modified: August 19, 2016

---

# Remove picture from template

 *  [javayoga](https://wordpress.org/support/users/javayoga/)
 * (@javayoga)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/remove-picture-from-template/)
 * hello again, another question, does anybody know how to remove or replace the
   coffee cups on the widget? they dont quite fit with the rest of the design. thanks
   again! [http://www.javaliciousyoga.com/](http://www.javaliciousyoga.com/)
 * Oh, and whilst we are at it, is it possible to remove the date under each page
   name (where it says by Sari on 22nd may etc)

Viewing 5 replies - 1 through 5 (of 5 total)

 *  [jkovis](https://wordpress.org/support/users/jkovis/)
 * (@jkovis)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/remove-picture-from-template/#post-1248958)
 * to remove the coffee cups go into your stlye.css file and change this:
 *     ```
       #sidebar h2 {
        font-size: 18px;
        color: #5F5855;
        padding: 5px 0px 5px 38px;
        margin: 5px 5px;
        border-bottom: 1px solid #A1948C;
        background: url('images/sidebar_title.png') no-repeat;
        }
       ```
   
 * to
 *     ```
       #sidebar h2 {
       /* background: url('images/sidebar_title.png') no-repeat;*/
        padding: 5px 0px 5px 5px;
        font-size: 18px;
        color: #5F5855;
        margin: 5px 5px;
        border-bottom: 1px solid #A1948C;
        }
       ```
   
 * to remove the date, go into your page.php (or corresponding page template) and
   remove this line:
 * `<div class="entry_date">anything between here too</div>`
 *  Thread Starter [javayoga](https://wordpress.org/support/users/javayoga/)
 * (@javayoga)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/remove-picture-from-template/#post-1248961)
 * THANK YOU SO MUCH, WORKED A TREAT! One last question (for today) I have those
   links right on the bottom which says, brought to you by…is it possible to remove
   that also? thanks for all your tips
 *  [jkovis](https://wordpress.org/support/users/jkovis/)
 * (@jkovis)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/remove-picture-from-template/#post-1248975)
 * go into the theme’s footer.php file and either delete everything between
 *     ```
       <div id="footer">
       ```
   
 * and
 *     ```
       </div>
       ```
   
 * or replace it with the following (it just comments it out):
 *     ```
       <div id="footer">
       <?php /*
       Powered by <a href="http://www.wordpress.org">Wordpress</a> |
       Theme designed by <a href="http://www.reviewkings.com">Site Reviews</a>
       <br />
       Brought to you by <a href="http://www.phonelookup.com">Cellphone Lookup</a> |
       <a href="http://www.singlesdigest.com">Dating Digest</a> |
       <a href="http://www.onlinedatingresource.com">Dating Resource</a>
       */ ?>
       </div>
       ```
   
 *  Thread Starter [javayoga](https://wordpress.org/support/users/javayoga/)
 * (@javayoga)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/remove-picture-from-template/#post-1248978)
 * i can only find the following code under footer.php:
    and now?
 * <Script Language=’Javascript’>
    <!– document.write(unescape(‘%3C%64%69%76%20%
   69%64%3D%22%66%6F%6F%74%65%72%22%3E%0A%50%6F%77%65%72%65%64%20%62%79%20%3C%61%
   20%68%72%65%66%3D%22%68%74%74%70%3A%2F%2F%77%77%77%2E%77%6F%72%64%70%72%65%73%
   73%2E%6F%72%67%22%3E%57%6F%72%64%70%72%65%73%73%3C%2F%61%3E%20%7C%20%54%68%65%
   6D%65%20%64%65%73%69%67%6E%65%64%20%62%79%20%3C%61%20%68%72%65%66%3D%22%68%74%
   74%70%3A%2F%2F%77%77%77%2E%72%65%76%69%65%77%6B%69%6E%67%73%2E%63%6F%6D%22%3E%
   53%69%74%65%20%52%65%76%69%65%77%73%3C%2F%61%3E%3C%62%72%20%2F%3E%0A%42%72%6F%
   75%67%68%74%20%74%6F%20%79%6F%75%20%62%79%20%3C%61%20%68%72%65%66%3D%22%68%74%
   74%70%3A%2F%2F%77%77%77%2E%70%68%6F%6E%65%6C%6F%6F%6B%75%70%2E%63%6F%6D%22%3E%
   43%65%6C%6C%70%68%6F%6E%65%20%4C%6F%6F%6B%75%70%3C%2F%61%3E%20%7C%20%3C%61%20%
   68%72%65%66%3D%22%68%74%74%70%3A%2F%2F%77%77%77%2E%73%69%6E%67%6C%65%73%64%69%
   67%65%73%74%2E%63%6F%6D%22%3E%44%61%74%69%6E%67%20%44%69%67%65%73%74%3C%2F%61%
   3E%20%7C%20%3C%61%20%68%72%65%66%3D%22%68%74%74%70%3A%2F%2F%77%77%77%2E%6F%6E%
   6C%69%6E%65%64%61%74%69%6E%67%72%65%73%6F%75%72%63%65%2E%63%6F%6D%22%3E%44%61%
   74%69%6E%67%20%52%65%73%6F%75%72%63%65%3C%2F%61%3E%0A%3C%2F%64%69%76%3E%0A%0A%
   3C%2F%64%69%76%3E’)); //–> </Script>
 * </body>
    </html>
 *  [jkovis](https://wordpress.org/support/users/jkovis/)
 * (@jkovis)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/remove-picture-from-template/#post-1248985)
 * Try replacing:
 *     ```
       <Script Language='Javascript'>
       <!--
       document.write(unescape('%3C%64%69%76%2);
       //-->
       </Script>
   
       </body>
       </html>
       ```
   
 * with:
 *     ```
       <div id="footer"></div><!-- end #footer -->
       </div><!-- end #wrap -->
       </body>
       </html>
       ```
   

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Remove picture from template’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 5 replies
 * 2 participants
 * Last reply from: [jkovis](https://wordpress.org/support/users/jkovis/)
 * Last activity: [16 years, 7 months ago](https://wordpress.org/support/topic/remove-picture-from-template/#post-1248985)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
