• 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! https://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)
  • 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

    (@javayoga)

    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

    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="https://www.www.ads-software.com">Wordpress</a> |
    Theme designed by <a href="https://www.reviewkings.com">Site Reviews</a>
    <br />
    Brought to you by <a href="https://www.phonelookup.com">Cellphone Lookup</a> |
    <a href="https://www.singlesdigest.com">Dating Digest</a> |
    <a href="https://www.onlinedatingresource.com">Dating Resource</a>
    */ ?>
    </div>
    Thread Starter javayoga

    (@javayoga)

    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>

    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.