How do I resize a logo on phpBB?

Should've been posted in the Technical Support section. Anyway, in your overall_header.html file in the prosilver template folder.

Search for "logo" (I'd post the code but I don't have the folder on my PC) and next to it you'll find "width="" height="" both those will have values in them, just make the values bigger or remove them completely and it will be the same size as the original logo.

If they're not located there they will be in the imageset.cfg file also located in the prosilver template folder but in the images folder. Do the same as above but the values may be in a different format, if you find the logo code, you'll find the values.

Good luck!
 
^^ Moved to a more suitable forum. Feel free to report a thread if you feel it should be moved! 🙂
 
The height / width values are stored in imageset.cfg , and then dynamically inserted into the HTML when the page is rendered.

Open: /styles/prosilver/imageset/imageset.cfg

Find:
Code:
img_site_logo = site_logo.gif*83*82
Replace with:
Code:
img_site_logo = your_new_logo.gif
You can leave the dimensions out , since basically all browsers after IE6 don't actually need them to determine the width/height of the image.

Then upload the file and refresh the imageset cache from the styles tab.
 
Back
Top Bottom