PDA

View Full Version : Change Logo


RedHacker
05-28-2016, 10:39 PM
Hello I want change my logo but I want put photo in full width. How to change this ?

In Omnibus
05-28-2016, 11:08 PM
The logo image is located at: /images/misc/vbulletin4_logo.png

Define "full width." Is your theme a fixed width or fluid?

RedHacker
05-29-2016, 12:16 AM
It is Fluid but if change the logo not show in full width but left

In Omnibus
05-29-2016, 12:35 AM
Add this to your additional.css

.logo-image {
clear:both;
display:block;
float:none;
text-align:center;
padding-top: 20px;
}

RedHacker
05-29-2016, 12:46 AM
Add this to your additional.css

.logo-image {
clear:both;
display:block;
float:none;
text-align:center;
padding-top: 20px;
}

Yes but right and left show the background of the vBulletin. I want to show in full width

Max Taxable
05-29-2016, 01:18 AM
<a href="http://ozzmodz.com/showthread.php/1193-So-you-want-that-single-image-banner-for-a-header-but?" target="_blank">http://ozzmodz.com/showthread.php/11...-a-header-but?</a>

RedHacker
05-29-2016, 01:41 AM
http://ozzmodz.com/showthread.php/1193-So-you-want-that-single-image-banner-for-a-header-but?

I want size this : https://vborg.vbsupport.ru/showthread.php?t=245702&highlight=change+logo

Look Screenshot

MarkFL
05-29-2016, 01:58 AM
I want size this : https://vborg.vbsupport.ru/showthread.php?t=245702&highlight=change+logo

Look Screenshot

One way to do that would be to add something like this to your "additional.css" template:

.doc_header {
background-image: url(image url goes here);
}

Max Taxable
05-29-2016, 03:16 AM
I want size this : https://vborg.vbsupport.ru/showthread.php?t=245702&highlight=change+logo

Look ScreenshotYou must not have read the thread I linked....

cellarius
05-29-2016, 07:11 AM
You must not have read the thread I linked....
It's not always considered polite to just post a link without further comment to a thread which is not visible without registration at another forum.

Max Taxable
05-29-2016, 05:09 PM
It's not always considered polite to just post a link without further comment to a thread which is not visible without registration at another forum.I never worried about what's considered "polite."

That link's been posted here many times for the many threads on this same issue. Just chiming in with help..

cellarius
05-30-2016, 03:29 AM
And that's perfectly ok. You just can't expect people to register in another forum just to read a link (as your remark in #9 suggests), expecially if that link is posted without any furhter comment. Just my opinion, obviously.

StormBreaker
06-17-2016, 11:27 PM
Style Variable Editor > ImagePaths > titleimage

images/misc/LOGO NAME.png

RedHacker
06-18-2016, 04:36 PM
I have one image in size 1920*1080 but if change to 1832*270 not show correct in all devices. How to fix this show correct in all devices ?

PC ? iPhone ?

MarkFL
06-18-2016, 04:49 PM
I have one image in size 1920*1080 but if change to 1832*270 not show correct in all devices. How to fix this show correct in all devices ?

PC ? iPhone ?

Those are vastly different aspect ratios. Try adding this selector to your "additional.css" template:

.doc_header {
background: url(image url goes here);
background-size: 100%;
background-repeat: no-repeat;
}

This way, the image width will fill the parent, and the height will be set to auto to preserve the original aspect ratio. :)

RedHacker
06-18-2016, 07:29 PM
Those are vastly different aspect ratios. Try adding this selector to your "additional.css" template:

.doc_header {
background: url(image url goes here);
background-size: 100%;
background-repeat: no-repeat;
}

This way, the image width will fill the parent, and the height will be set to auto to preserve the original aspect ratio. :)

Not worked MarkFL.... :(

MarkFL
06-18-2016, 09:13 PM
Not worked MarkFL.... :(

Please post a link to your site, and a link to the image you want in your header...then I can use Firebug to determine exactly the CSS selector you need. :)