• There is a thick line above my page footer that I am trying to remove. I have almost no CSS knowledge. Can someone please tell me which line of code that is so that I can safely delete it?

    My site is https://www.jenniesteinberg.com

    <?php
    /**
     * The template part file for footer.
     *
     *
     * @package Raindrops
     * @since Raindrops 0.1
     *
     * @uses wp_upload_dir()
     * @uses raindrops_upload_image_parser($footer_image_uri,'inline','#ft')
     * @uses is_active_sidebar( 'sidebar-4' )
     * @uses get_bloginfo('name')
     * @uses get_bloginfo('rss2_url')
     * @uses ucwords()
     * @uses get_current_theme()
     * @uses wp_footer()
     * @uses raindrops_prepend_footer()
     * @uses raindrops_append_footer()
     * @uses raindrops_append_doc()
     */
    ?>
    <div id="ft" class="clear">
    <?php raindrops_prepend_footer();?>
    <!--footer-widget start-->
    <div class="widget-wrapper clearfix">
    <?php if ( is_active_sidebar( 'sidebar-4' ) ) {?>
        <ul><?php dynamic_sidebar('sidebar-4');?></ul>
    <?php } ?>
      <br class="clear" />
    </div>
    <!--footer-widget end-->
    <address>
    <?php
    
    //printf(
    //'<small>&copy;%s %s <a href="%s" class="entry-rss">%s</a> and <a href="%s" class="comments-rss">%s</a></small>&nbsp;',
    //date("Y"),
    //get_bloginfo('name'),
    //get_bloginfo('rss2_url') ,
    //__("Entries <span>(RSS)</span>","Raindrops"),
    //get_bloginfo('comments_rss2_url'),
    //__('Comments <span>(RSS)</span>',"Raindrops")
    //);
    if( is_child_theme() ){
        $raindrops_theme_name = 'Child theme '.ucwords(get_current_theme()).' of '.__("Raindrops Theme","Raindrops");
    }else{
        $raindrops_theme_name = __("Raindrops Theme","Raindrops");
    }
    //printf(
    //'&nbsp;<small><a href="%s">%s</a></small>&nbsp;&nbsp;',
    //'https://www.tenman.info/wp3/raindrops',
    //$raindrops_theme_name
    //);
    ?>
    </address>
    <?php raindrops_append_footer();?>
      </div>
    <?php raindrops_append_doc();?>
    </div>
    <?php wp_footer(); ?>
    
    <center>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Contact: 781-354-0405 * Custance Place, 76 Bedford Street, Suite 19, Lexington, MA 02420 <hr>
    All content ?2012 Jennie Steinberg, LMHC, LLC. All Rights Reserved.  <a href="https://www.piltser.com/website-design/" target="_blank">Website design by Jade Piltser</a></center></br>
    
    </body>
    </html>
Viewing 3 replies - 1 through 3 (of 3 total)
  • You’ll probably want to look for a file called style.css, and then locate the section of code that says:

    #ft {
    color: black;
    background-color: gray;
    border-top: medium solid black;
    background: url(https://www.jenniesteinberg.com/wp-content/themes/raindrops/images/raindrops-item-footer-style-repeatx-top-0-left-0-x-height-0-footer.jpg) repeat-x;
    color: #333;
    }

    and change it to:

    #ft {
    color: black;
    background-color: gray;
    border-top: none;
    background: url(https://www.jenniesteinberg.com/wp-content/themes/raindrops/images/raindrops-item-footer-style-repeatx-top-0-left-0-x-height-0-footer.jpg) repeat-x;
    color: #333;
    }
    Thread Starter jenniesteinberg

    (@jenniesteinberg)

    There’s nothing on my style sheet like that. This is what my style.css file looks like:

    [2232 lines of CSS removed. Please just link to your web site.]

    I think it’s being added either from your functions.php line 1971 border-top:solid 1px %c_border%;

    or some where in your csscolor.css.php file check lines:
    1290
    1442
    209
    352
    476

    good luck!!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove thick line on footer?’ is closed to new replies.