Add an image into the Redirect page in IPB.

Moderator: Lixas

Locked
blue-sky
Posts: 33
Joined: Tue Jun 12, 2007 3:41 pm

Add an image into the Redirect page in IPB.

Post by blue-sky »

Add an image into the Redirect page in IPB.

Open up your ACP.

Go to:

1. Look & Feel
2. **** the drop down menu next to the skin you wish to edit
3. Select "Edit Template HTML"

Then go:

1. All Global HTML
2. Press Redirect

Then look for:

Code: Select all

 <p>$Text

{$this->ipsclass->lang['transfer_you']}</p> 
 
Replace that with: 
 
<p>$Text

<img src="URL TO YOUR IMAGE" />

{$this->ipsclass->lang['transfer_you']}</p>

Change URL TO YOUR IMAGE to the location of the image you want to add.


If you want to center the image, just do:

Code: Select all

<p align='center'>$Text

<img src="URL TO YOUR IMAGE" />

{$this->ipsclass->lang['transfer_you']}</p>

Done..Enjoy!! It works...


anish
Posts: 353
Joined: Fri Apr 27, 2007 12:34 pm
Contact:

Post by anish »

Ya its working its nice man.
Gyanu
Posts: 338
Joined: Mon Jul 30, 2007 2:03 pm
Contact:

Post by Gyanu »

It is fentastic.
Image
Alwahsh
Posts: 292
Joined: Sat Aug 16, 2008 7:05 am

Post by Alwahsh »

Thanks for sharing that man , its very nice
Locked