XF 1.5 Logo Size too small

Chromify

Member
Hi,

Apparently, my logo doesn't seem to change size on my website, craftedmc.net and I want it to fill up but like 10 pixels away from the search bar. How would I make it bigger? I've tried remaking the image and it won't work.

My website: craftedmc.net
 
You have a max-width of 100px set on the logo somewhere.

Code:
#logo img {
max-width: 100px;
width: 100%;
}

causing it to be rather small.

You can find that and adjust it, or just add some new CSS to overwrite it:

Code:
#XenForo #logo img {
max-width: 300px;
}
 
You will need to use a graphics program (Photoshop, PSP, etc.) to make the image larger.

I already tried to make it huge, that only increases the quality.

You have a max-width of 100px set on the logo somewhere.

Code:
#logo img {
max-width: 100px;
width: 100%;
}

causing it to be rather small.

You can find that and adjust it, or just add some new CSS to overwrite it:

Code:
#XenForo #logo img {
max-width: 300px;
}

What file path would that be?
 
Since you're using the UI.X theme you need to edit your logo width settings through the UI.X style properties.

So do the following:

Login to admin control panel->Click on appearance->Click on style properties (Make sure the UI.X theme is the selected theme)->Click on [UI.X] Logo->Change logo width settings.

After you do these steps your logo should be bigger
 
Since you're using the UI.X theme you need to edit your logo width settings through the UI.X style properties.

So do the following:

Login to admin control panel->Click on appearance->Click on style properties (Make sure the UI.X theme is the selected theme)->Click on [UI.X] Logo->Change logo width settings.

After you do these steps your logo should be bigger

Oh my god, I have wanted to do this for so long. Thank you very much!
 
Top Bottom