View Single Post
  #3  
Old 02-20-2009, 10:19 AM
Tequila's Avatar
Tequila Tequila is offline
The Grim One
 
Join Date: Jan 2009
Location: Souther Tier, New York State
Posts: 1,356
Gender: Female
Credits: 99,179
Tequila is on a distinguished road
Default RE: Edit Featured Adoptable display

Quote:
Originally Posted by BMR777
Yeah. Open up inc > functions.php in a text editor and find:

PHP Code:
    $content "<p><img src='".$imageurl."' id='me' alt='Featured Adoptable'>
                    <strong><a href='show.php?id="
.$id."'>".$name."</a></strong><br />
                    Level: "
.$currentlevel."<br />
                    Owner: "
.$owner."<br />
                    <a href='levelup.php?id="
.$id."'>Add more HP</a></p>"
That's the HTML for the featured adoptable. So you could do something like:

PHP Code:
    $content "<a href='levelup.php?id=".$id."'><img src='".$imageurl."' id='me' alt='Featured Adoptable'></a>"
:)

BMR777
I must have just edited it when you replied. I guess I'm tired today.
Reply With Quote