How To Change Logo?

Hi there,

Probably a silly question but how do I go about changing the logo - "Aqua-soft.org" to something else? I saw the post with the PSD but I can't find where/ how to make the replacement.

#533068

You'll want to replace the file in

forums/public/style_images/as_mobile/mobile/ header_logo.png

That should do it. If you need it to be bigger, you may need to edit some css. Which I can help you with.

#533069

Hi Timan,

I purchased the skin a few weeks ago and have only just got around to installing it on the forum currently i have a logo seen here

http://www.arcticmonkeysuk.com/forums/

I would like this to sit on top of the iphone skin and im not sure how am i best to resize the image to a similar size to the one in the skin then just overwrite or do i need to deal with the CSS?

Any help is welcomed!

:)

#533663

This "should" work.

Heres a resized logo you can use.

am_logofc90c.png

First you'll need to go into the templates, and look for one called globalTemplate

Look for the following bit.

	<div id="header-top">
<h1><a name="top" href='{$this->settings['board_url']}'><b>{$this->settings['board_name']}</b></a></h1>

Replace with.

	<div id="header-top">
<a name="top" href='{$this->settings['board_url']}'><img src="../../unavailable.html" alt="" /></a>

Save and that should do it.

Be sure to rename the file in the bit you're replacing with the one you upload/want to use.

Hope that helps.

#533666

Hi thanks for the quick reply i followed you're help but im not getting the logo to show on the iphone

My code

   <a name="top" href='{$this->settings['board_url']}'><img src="../../unavailable.html"alt="" /></a>
<span id="header-links">

I used the image you created renamed it to logo_file_name.png and uploaded but the image isnt appearing. :)

#533667

Seems you put it in the mobile folder,

So change

<img src="../../unavailable.html" alt="" />

to

<img src="../../unavailable.html"alt="" />

#533674

Seems you put it in the mobile folder,

So change

<img src="../../unavailable.html" alt="" />

to

<img src="../../unavailable.html"alt="" />

Ahh yes of course!

Brilliant done the job perfectly!

#533675