PDA

View Full Version : Header space Question


HC.
04-16-2011, 09:31 PM
I paid someone for a design the support that they promissed has gone away will not respond to pm's
Here is my question VB 4.1.2
How can I add space to the header our logo is not fitting "see attachment"
the red I is the space that I need larger to fit my logo.

Also on another VB that I have that is running 3.8.7 we use a tables in the header does anyone know if the convertor tool will transfer over all the tables in our old header when we switch to vb 4.x.x

Kuya
04-16-2011, 10:08 PM
Try this..

Locate vbulletin-chrome.css by searching in the templates.

You should then easily find the css and where it says:

.doc_header {

Then find the hight in pixels, and it should read something like "min-height:100px;" (if it is 100 pixels), so all you need is to increase that number.

NOTE: Before you do that, I would suggest backing up the vbulletin-chrome.css in notepad until the results are shown to be ok:up:

HC.
04-16-2011, 10:28 PM
.doc_header {
_background-image:none;
border:{vb:stylevar header_border};
color:{vb:stylevar header_color};
font:{vb:stylevar header_font};
position:relative;
min-height:35px;
/*padding-bottom:{vb:math {vb:stylevar padding}/2};*/
/*margin-bottom:{vb:math 2 * {vb:stylevar navbar_tab_size.height}}px;*/
}
.doc_header a { color:{vb:stylevar header_link_color}; }
.doc_header a:hover { color:{vb:stylevar header_linkhover_color}; }
.doc_header hr { display: none; }
.logo-image {
float: {vb:stylevar left};
clear: {vb:stylevar right};
min-height: 2em;
height: auto !important;
height: 2em;
padding: {vb:stylevar titleimage_padding};
}




Which one to change?
logo is 400x300

--------------- Added 1303000412 at 1303000412 ---------------

.doc_header {
_background-image:none;
border:{vb:stylevar header_border};
color:{vb:stylevar header_color};
font:{vb:stylevar header_font};
position:relative;
min-height:187px;
/*padding-bottom:{vb:math {vb:stylevar padding}/2};*/
/*margin-bottom:{vb:math 2 * {vb:stylevar navbar_tab_size.height}}px;*/


change to 187px still did not work

Lynne
04-17-2011, 01:45 AM
Can we get a link?

HC.
04-17-2011, 09:18 AM
<a href="http://70.86.108.235/forum" target="_blank">http://70.86.108.235/forum</a>

what tools are you using?

Lynne
04-17-2011, 03:26 PM
Your whole header is made out of images instead of just divs with css.

HC.
04-17-2011, 05:12 PM
Your whole header is made out of images instead of just divs with css.

How could you tell?
How can I fix it?

Lynne
04-17-2011, 05:13 PM
You'll need to make the images 'taller'. I could tell by using firebug and seeing this in the CSS.

HC.
04-17-2011, 05:39 PM
You'll need to make the images 'taller'. I could tell by using firebug and seeing this in the CSS.

What is the image name?

Lynne
04-17-2011, 07:00 PM
Get firebug and you can get the full list - images/race/style/header-left.png, images/race/style/header-right.png, images/race/style/header.png, images/race/style/logo.png . Could be others, but those are all showing up right there in the CSS.