View Full Version : Mini Mods - Site Logo Image re-size
Spangle
12-17-2013, 11:00 PM
The default width for the logo image in VB5 is only 320px, which may suit the VB logo itself, but doesn't help those wanting a bigger logo, the easiest and best way to do this is by altering the css, doing it this way means you don't mess up the rest of the header area.
You only need to complete two edits to one file.
Go to :
AdminCP>Styles and Templates>Style Manager
From the drop down menu select :
Edit Templates>CSS Templates> css_global.css
Find :
#header .site-logo {
padding: 22px 10px 26px;
background:transparent;
min-width:90px;
max-width:320px;
position:relative;
text-align:{vb:stylevar left};
}
Alter the max-width to the desired width in pixels, up to 720px works fine.
Find : (it should be directly underneath, the above)
#header .site-logo img {
height:auto;
width:auto;
max-width:320px;
}
Once again edit the part in red to the same figure as the first.
One point to remember is that with the height and width set to "auto" the CSS will make you image "fit" the maximum width set.
Therefore if you plan to use a larger logo, it is best to design the logo to your maximum width, if you use a smaller image, it will appear pixelated when enlarged by the CSS.
ozzy47
12-18-2013, 02:43 PM
Why don't you just add that to additional.css that wat it is safe from upgrades, when you have go revert the templates?
Spangle
12-18-2013, 04:19 PM
I tried the lower of the two on it's own through the additonal_css but it didn't work, so I went into css_global_css and found the two instances, didn't think to try adding them both to additional and trying it again ! :o
BWalter74
05-31-2014, 03:23 AM
How do I get rid of the search bar next to the logo?
https://vborg.vbsupport.ru/external/2014/06/30.jpg
I would like the banner to be the whole width
K4GAP
05-31-2014, 07:23 AM
How do I get rid of the search bar next to the logo?
https://vborg.vbsupport.ru/external/2014/06/30.jpg
I would like the banner to be the whole width
Start your own thread and I guarantee you will get better results. Not only that but it's protocol here.
BWalter74
05-31-2014, 01:04 PM
Thank you, I will
Spangle
06-01-2014, 04:18 PM
Thank you, I will
Theres a fix on VB.com in the tutorials it moves the search bar to the Nav bar
but here it is any way :
/*Search in Navbar*/
#header { position: relative; }
#header .header-cell { width: 100%; }
#header .toolbar {
position: absolute;
{vb:stylevar right}: 0;
bottom: -29px;
padding: 0;
display: block;
width: auto;
}
If you want to reduce the size of the visible text entry box use this :
/* reduce search box width from 168px to 120px or any size if you want */
.search-container .search-box .search-term { width: 120px; }
Hope this helps, thanks go to Wayne
Spangle
06-01-2014, 04:24 PM
How do I get rid of the search bar next to the logo?
https://vborg.vbsupport.ru/external/2014/06/30.jpg
I would like the banner to be the whole width
The banner and the site logo are two separate images, you can load the banner via the header stylevar in edit templates.
The site logo is added through site builder.
posontyclanole
11-09-2014, 01:36 PM
If I put the big logo will be expected to be misconfigured on mobile devices (phones, tablets, etc.)?
meissenation
02-19-2017, 04:49 AM
Theres a fix on VB.com in the tutorials it moves the search bar to the Nav bar
but here it is any way :
/*Search in Navbar*/
#header { position: relative; }
#header .header-cell { width: 100%; }
#header .toolbar {
position: absolute;
{vb:stylevar right}: 0;
bottom: -29px;
padding: 0;
display: block;
width: auto;
}
If you want to reduce the size of the visible text entry box use this :
/* reduce search box width from 168px to 120px or any size if you want */
.search-container .search-box .search-term { width: 120px; }
Hope this helps, thanks go to Wayne
thanks for sharing, worked perfectly on 5.2.6
willie53
04-07-2018, 02:19 AM
This could be done using a product so would be carried over to all installed styles this is a quick one i created it lets you use the full width of the header upto 1600x200 px it also moves the search box down to the tabbar.
It has been tested on Vb5.2.6 upto Vb5.4.1
afala
01-23-2021, 03:38 PM
This could be done using a product so would be carried over to all installed styles this is a quick one i created it lets you use the full width of the header upto 1600x200 px it also moves the search box down to the tabbar.
It has been tested on Vb5.2.6 upto Vb5.4.1
Thanks :yukarı:
albanah
07-28-2021, 10:01 AM
Theres a fix on VB.com in the tutorials it moves the search bar to the Nav bar
but here it is any way :
/*Search in Navbar*/
#header { position: relative; }
#header .header-cell { width: 100%; }
#header .toolbar {
position: absolute;
{vb:stylevar right}: 0;
bottom: -29px;
padding: 0;
display: block;
width: auto;
}
If you want to reduce the size of the visible text entry box use this :
/* reduce search box width from 168px to 120px or any size if you want */
.search-container .search-box .search-term { width: 120px; }
Hope this helps, thanks go to Wayne
How can I replace the search box by icon in navbar and when selected it displays search box below navbar?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.