• Hi there,

    I’m trying hard to change my header height in my Pinnboard theme, but I just don’t get it done.

    I tried it with

    #header {
    	border-top:#111 3px solid;
    	height: 200px;
    }

    as well as
    #custom_header {
    height: 200px;
    }

    in the style.css but it won’t work.

    Is there a difference between Pinboard and other themes I forgot ?

    Thanks a lot !

Viewing 5 replies - 1 through 5 (of 5 total)
  • Without seeing your site, it’s almost impossible to answer this kind of question. Are you using Firebug to identify and test CSS changes?

    Thread Starter galaxy_class

    (@galaxy_class)

    Ok, sry.
    That’s then that: http://galaxy-class.bplaced.net/wordpress_342-de/wordpress/

    I’ve Firebug but I don’t know how I benefit from it bc it shows me (of course) only the HTML code…

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Try Firebug’s documentation for Firebug-related queries.

    I don’t think height is what you are after — the large space above and below your header text is being set by the line-height in this CSS:

    #site-title, #site-description {
        float: left;
        font-weight: 300;
        line-height: 150px;
        margin: 0;
    }

    BUT do NOT make any changes to your theme files — you need to create a Child Theme or use a custom CSS option or plug-in. Otherwise, all your changes will be erased when the theme is updated.

    Do read up on using Firebug — it shows you all the CSS code — which is what you need to use to make changes.

    Thread Starter galaxy_class

    (@galaxy_class)

    First: That’s it ! Thanks !

    Second:

    BUT do NOT make any changes to your theme files

    Err… Too late I think …

    But there is no auto-update function, or anything ? So as long I don’t update, that’s fine ?

    Ok, I will read the firebug doc.
    Thanks for all those tips !

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘header size – Pinnboard’ is closed to new replies.