Announcement

Collapse
No announcement yet.

Header Height - I searched, but...

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • EverydayCats
    replied
    Michael, Thank you very much for the correct answer. It was a simple fix, yet no search came up with your answer. I took your advise and placed the fix in "additional.css" so upgrades will not trap me in the future. I hope this thread is a help to others that search on this question, because it was the correct answer.

    Thank you again...

    Leave a comment:


  • TheLastSuperman
    replied
    Originally posted by EverydayCats View Post
    I see several questions related to my question, but no clear answer, and the answers I tried did not work.

    I simply want to increase the height of the header. I have an image that is about 980 x 150 px and only about 50% of it is showing in my forum:
    disability, parking, disabled, people with disabilities, transportation, handicap parking, sidewalk, bus, access


    I am just getting underway with development so I will take any and all suggestions.

    Thank you very much.
    You can edit the css in vbulletin-chrome.css template which is:

    Code:
    .doc_header {
        border:{vb:stylevar header_border};
        color:{vb:stylevar header_color};
        font:{vb:stylevar header_font};
        position:relative;
        min-height:35px;
    }
    ^ Change the:
    Code:
    min-height:35px
    To the height you desire .

    OR to avoid that being possibly overwritten in your next upgrade paste it in additional.css instead like this:

    Code:
    .doc_header {
        border:{vb:stylevar header_border};
        color:{vb:stylevar header_color};
        font:{vb:stylevar header_font};
        position:relative;
        min-height:150px;
    }

    Leave a comment:


  • EverydayCats
    started a topic [Forum] Header Height - I searched, but...

    Header Height - I searched, but...

    I see several questions related to my question, but no clear answer, and the answers I tried did not work.

    I simply want to increase the height of the header. I have an image that is about 980 x 150 px and only about 50% of it is showing in my forum:
    disability, parking, disabled, people with disabilities, transportation, handicap parking, sidewalk, bus, access


    I am just getting underway with development so I will take any and all suggestions.

    Thank you very much.

Related Topics

Collapse

Working...
X