Viewing 6 replies - 1 through 6 (of 6 total)
  • Chito

    (@chitaranjanthoudam)

    I have reduced for my website in style.css. Just look for header and change the desire px in the place of 198px. Make sure u change the alignment for site tittle as well if you are using WP tittle option.

    For the cropping, I haven’t figured it out. I mean…we can just replace existing header using ftp. Yeah I will look for the cropping option also and replied to you later.

    Add this to your child theme’s functions.php

    function graphene_custom_header_width(){
       return 960;
    }
    function graphene_custom_header_height(){
       return 250;
    }
    add_filter('graphene_header_image_width', 'graphene_custom_header_width');
    add_filter('graphene_header_image_height', 'graphene_custom_header_height');

    And this to your child theme’s style sheet or in Graphene Options –> Display –> Custom CSS

    #header {
        height: 250px;
        width: 960px;
    }
    Thread Starter buru

    (@buru)

    Thanks you guys!
    Changes from style.css and ftp upload/replace worked fine but the header crop function not.
    Thanks again!

    I have one question..
    How can I change whole template dimensions..Height and width..
    I wanna see my whole theme without scrolling??!
    Is that possible…?
    help:D

    Chito

    (@chitaranjanthoudam)

    @akinho7

    Why not, you can make whatever or however you desire, you can even make so differently from the current look of the theme, example as my website https://kokcyn.com

    In my website, I have increased the width to 1000px, you can do this in Appearance> Graphene Option, In the 2nd tab you will be able to set the width.

    For the vertical-scrolless website, you might just have to reduce the the contents on the homepage to make sure everything fits on your screen and better pagination on other archieve or post pages.

    Thx lot..chitaranjan.thoudam
    Yeah It was in graphene options..:D
    Finally i cu the width..:D
    thx once again..
    greets

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘change some things in graphene theme header’ is closed to new replies.