Edit Contact Us

  • Unknown's avatar

    How do I edit blurbage on bottom of page? Our developer created this and I am unsure how to edit it.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hello there,

    If I am not wrong you are talking about the footer image. To remove the image, you need to use Custom CSS which is a feature of WordPress.com Premium and WordPress.com Business plans.
    https://wordpress.com/pricing/
    Remove the URL of the image, change it or add visibility: hidden to hide the entire section.

    
    #footer {
        background: url(/wp-content/themes/pub/koi/img/footer.gif) no-repeat center bottom;
        position: relative;
        clear: both;
        width: 100%;
        overflow: hidden;
        height: 144px;
        color: #685138;
        visibility: hidden;
    

    Extra line above image can be remove by removing the code or add visibility: hidden to hide it.

    
    #secondary {
        clear: both;
        border-top: double 4px #b09370;
        color: #7b6043;
        font-family: Georgia,"Times New Roman",Times,serif;
        font-size: .9em;
        line-height: 1.5em;
        visibility: hidden;
    

    Hope this helps!
    Thanks.

  • The topic ‘Edit Contact Us’ is closed to new replies.