M |
Michael Zacchilli (@mzaccz) |
How do I increase the height of the blue banner box at the top of most pages? The logo there is max out at 43px...... I need at least a top box of 150px in height.
It is dependent on Jcow version and your template.
For exsample at this official site, we need to change bellows:
$("#jcow_top_logo img").css({"max-height":"43px","width":"auto"});
#jcow_top_logo img {
max-height: 43px;
width:auto;
}
body {
font-size: 12px;
font-family: tahoma,verdana,arial,sans-serif;
text-align: center;
padding: 0;
margin: 0;
text-align: center;
line-height:150%;
padding-top:43px;
}
You need to change above 3 of 43px
at least.
I hope that this works. I do not check by myself yet.
foken @shigeru
95 months ago
|