View Single Post
  #2  
Old 02-20-2009, 10:18 AM
BMR777 BMR777 is offline
Member
 
Join Date: Jan 2011
Posts: 1,122
Gender: Male
Credits: 17,142
BMR777 is on a distinguished road
Default RE: Edit Featured Adoptable display

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
Reply With Quote