• Hello,

    Site: copfeed.com

    Im using this code in the advanced section of the theme to remove page headers (titles) and it is not working..

    /* Remove Page Title */
    .page-header {
    display: none;

    Here is all the code that I have in the advanced section:

    /* Home Icon Menu Background Color */
    .home-iconmenu .home-icon-item, .home-iconmenu a {
        background-color: #1e73be;
    }
    /* Remove Page Title */
    .page-header {
    display: none;
    }
    .topbarmenu ul li a {
    font-size: 13px;
    }
    
    @media (min-width: 1200px) {
    .topbar_social ul {
        float: right;
        }
    
    .kad-topbar-left {
        width: 70%;
    }
    
    .kad-topbar-right {
        width: 30%;
      }
    }
    
    @media (min-width: 992px) {
    .topbar_social ul {
        float: right;
        }
    
    .kad-topbar-left {
        width: 80%;
    }
    
    .kad-topbar-right {
        width: 20%;
      }
    }

Viewing 7 replies - 1 through 7 (of 7 total)
  • i don’t see any titles in your pages other than the blue copfeed which is your logo

    Thread Starter bmdenison

    (@bmdenison)

    Thanks. I will upload a logo.

    if you want to hide the words copfeed thats on every page, just use this:

    a.brand.logofont {
    display:none;
    }
    Thread Starter bmdenison

    (@bmdenison)

    Nice that works well. So there is a section of white now between the topbar menu and the slider.

    How could I change the color of just that section and place some text in that area?

    Or just remove that white all together and have the topbar menu and the slider touch.

    Thanks,
    Bdenn

    you can add text and style it at theme-options >main (site tagline)..

    but if you want to remove all that whitespace:

    .col-md-8.kad-header-right {
    min-height: 0;
    }
    
    div.col-md-4.clearfix.kad-header-left {
    min-height: 0;
    }
    
    .wrap.contentclass {
    padding: 0;
    }
    
    div#logo {
    padding: 0;
    }

    there might be a better way to do this but from my limited knowledge, the above should work

    AWESOME! It worked:
    Just wanted to remove these page headers on all pages! Thanks:

    /* Remove Page Title */
    .page-header {
    display: none;

    https://www.upriverafrica.com

    You’re rocking that code! @bmdenison

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Removing Header (title) from each page.’ is closed to new replies.