• Hi,

    hoping someone out there can help. I really want to remove the header line from my site.
    At the moment I seem to have two lines above my slider and below my menu and cant figure out how to remove them.
    I am using galleria.
    Website is http://www.the-doghouse.org

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Lozzkins,
    put this code to your Child Theme style.css file
    OR
    Install Simple Custom CSS plugin and put the code there.
    It can happen that it is not working.
    Then we have to look further.

    .hentry .entry-header {
        border-bottom-width: 0px;
    }
    
    .home.blog .site-header,
    .home.page:not(.page-template-template-homepage) .site-header,
    .home.post-type-archive-product .site-header {
      margin-bottom: 0px;
      }
    
    .no-wc-breadcrumb .site-header {
      margin-bottom: 0px;
    }

    or

    .hentry .entry-header {
        border-bottom-width: 0px!important;
    }
    
    .home.blog .site-header,
    .home.page:not(.page-template-template-homepage) .site-header,
    .home.post-type-archive-product .site-header {
      margin-bottom: 0px!important;
      }
    
    .no-wc-breadcrumb .site-header {
      margin-bottom: 0px!important;
    }

    …and HERE is how it look on my browser after tweaking
    Let me know result. Im hoping I was helpfull.
    Cheers
    TR

    You’ll need to edit some css.

    Remove the light grey line

    @media screen and (min-width: 768px) {
        .home .right-sidebar .content-area,
        .left-sidebar .content-area {
            padding-top: 0;
            border-top: 0;
        }
    }

    Remove the black line below the light grey line:

    .home .hentry .entry-header {
        border-bottom: 0;
        margin-bottom: 0;
    }

    There are plugins available to add css to your site.

    https://wordpress.org/support/view/plugin-reviews/simple-custom-css

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Please help – removing line’ is closed to new replies.