You need to resize the image so it doesn't have all of the room below the actual image. I think you can set a transparent colour with CSS Filters.
Printable View
You need to resize the image so it doesn't have all of the room below the actual image. I think you can set a transparent colour with CSS Filters.
On the form I have, if you don't have a hex it doesn't work, so fffff has been set default, and if you have a background (1-19) you still need a hex, I dont think this transparency will be possible too be honest.
Hex code is a colour. Like FFFFFF is white, 000000 is black.
Rotation is which way you want the habbo to face (enter 1 - 9)
I was testing something on that. ;)
http://www.habbohotel.co.uk/habbo-im...Creator_1_name
woah at that LOL
Rofl, thats cool.
The code for rotation and hex is:
Save as form.htmlCode:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>What does your Habbo look like?</title>
</head>
<body>
<form action="habbo.php" method="post">
Enter Habbo Name: <input type="text" name="name" /><br />
Enter Hex Code: <input type="text" name="hex" value="000000" /><br />
Enter Habbo Rotation: <input type="text" name="habbo" />
<br /><input type="submit" name="submit" value="Submit" />
<br /><br />
If you don't know what a hex code is, leave the form as 000000
<br />For rotation enter a number from 1 to 9.
</body>
</html>
Save as habbo.phpPHP Code:<?php
$name = $_POST['name'];
$hex = $_POST['hex'];
$habbo = $_POST['habbo'];
$br = "<br>";
if ($name == null|$hex == null|$habbo == null){
echo "You missed a field!";
} else {
echo "$name looks like this: $br <img src=\"http://www.habbohotel.co.uk/habbo-imaging/collagepr?name_2_txt=0&name_2_y=-117&name_2_x=-491&h_2_dir=$habbo&h_2_name=0&h_2_frame=0&h_2_gesture=0&h_2_action=0&h_2_y=0&h_2_x=50&name_1_txt=$name&name_1_y=-597&name_1_x=-471&stampY=-1048&stampX=-1019&h_1_dir=$habbo&h_1_name=$name&h_1_frame=0&h_1_gesture=nrm&h_1_action=std&h_1_y=0&h_1_x=0&overlay=0&overlayY=-95&overlayX=-39&logoY=-300&logoX=-300&bkg=0&bkgY=-95&bkgX=-39&bkgColor=$hex&picH=300&picW=65&quality=5&img-format=png&xml-template=imageCreator_1_name\"> $br If no image of a Habbo shows, the Habbo doesn't exist.";
}
?>
lol - i've got that code already ;p
I know you have you're two steps ahead :p
Just incase other people want it ;)
Look at this though: http://www.dotdoodle.net/fierce.php?user=Zengo
How did he do that? Try any habbo, its small and transparent.