Tagged: , ,

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #10387
    trentbuzz
    Member

    http://sixfootkitten.com/WP6FK/where

    there is a gag under menu bar where there page titles were located. How can I remove/reduce that padding? Sidebars are higher than page.

    Thanks!

    #10388
    trentbuzz
    Member

    gag=gap (space)

    #10413
    Sakin
    Keymaster

    Are you trying to hide the page title. If yes, then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .page .entry-header {
        display: none;
    }
    #10433
    trentbuzz
    Member

    No- I have the title hidden- but I was wondering if you could remove that padding from the title. Check out: http://sixfootkitten.com/where

    Notice how the left side (page) is a lot lower than the right (widget) side.

    Thanks!

    #10443
    Sakin
    Keymaster

    @trentbuzz: You have just hidden the tile by using font size to 0 but with that you haven’t hide the title padding and the line height. So, the best way to hide the title will be by adding the following css.

    .page .entry-header {
        display: none;
    }

    This will make the sidebar and content align.

    #10504
    trentbuzz
    Member

    thanks! worked perfectly.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Page titles removed, how to reduce padding?’ is closed to new replies.