• jaromil

    (@jaromil)


    Hi Takao, very nice theme, thank you!
    Hi all you folks using Graphy!

    1. I’d like to change the width of the header in http://www.hamburgnotizen.de because the title text is breaking in two lines. If I could put a bit wider it would fit in one line. Where can I change that?
    2. In the blogposts I’d like to have only one column instead of the two that I want to have in the home/main page. Is that possible and how can I change it?

    Thanx in advance an greetings from Hamburg, Germany.
    Jens

Viewing 1 replies (of 1 total)
  • Theme Author Takao Utsumi

    (@utsumit)

    Hi!

    1. This is easy. Add this codes.

    @media screen and (min-width: 960px) {
    	.site-branding {
    		max-width: 1040px;
    	}
    }
    
    @media screen and (min-width: 1180px) {
    	.site-branding {
    		max-width: 1260px;
    	}
    }

    2. This is a little difficult.
    First, delete ‘<?php get_sidebar(); ?>’ from single.php.
    And modify graphy_body_classes in function.php from
    ‘ if ( is_active_sidebar( ‘sidebar’ ) && ! is_page_template(‘nosidebar.php’) ) {
    $classes[] = ‘has-sidebar’;
    } else {
    $classes[] = ‘no-sidebar’;
    }’
    to
    ‘ if ( is_active_sidebar( ‘sidebar’ ) && ! is_page_template(‘nosidebar.php’) && ! is_single() ) {
    $classes[] = ‘has-sidebar’;
    } else {
    $classes[] = ‘no-sidebar’;
    }’

Viewing 1 replies (of 1 total)
  • The topic ‘Adjust header width, only one column in posts’ is closed to new replies.