• How do I make my header height longer. I added an image to my header but now the bottom words (which should read “Home for Social Change underneath the title) no longer appear. How do I make the header slightly taller?

    to view, visit http://www.janetaxpayer.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try changing:

    #wrapper #logo {
    display:inline;
    float:left;
    height:150px;
    margin-top:15px;
    padding-left:20px;
    position:relative;
    width:auto;
    }

    to

    #wrapper #logo {
    display:inline;
    float:left;
    height:150px;
    margin-top:15px;
    padding-left:20px;
    position:relative;
    top:-20px;
    width:auto;
    }

    in style.css. It won’t increase the height of your header bar but it will pull your logo and byline up a little.

    Thread Starter nkirk

    (@nkirk)

    Thanks… Not the solution I had in mind, but it works for now and the by-line is visible. Thanks muchly!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘How do I change header size in techified’ is closed to new replies.