Hello, I am looking for reporters or photographers from Thailand who could take pictures of: 1. Signs of warning in Thailand (in the protesting area) to show the meaning and use of a language (Thai)… (Budget: $30-250, Jobs: Article Rewriting, Photography, Report Writing, Research)
Diagonal Menu Bar Fix by x5studios1
ATTENTION: You are bidding ONLY on fixing a menu, NOT to create the entire page. (since I’ve already created and sliced the page.) I need help with a diagonal menu bar. My client needs a top diagonal menu that when you rollover will allow you to have Sub-menus… (Budget: $30-250, Jobs: Flash, HTML, HTML5, Javascript, jQuery / Prototype)
Excel Calculationsfe by tas26
hi, This excel project requires the computation of several factors on a specific time series data. You must have knowledge of drawdown to bid on this project. Strong financial knowledge will be a plus… (Budget: $30-250, Jobs: Data Processing, Excel)
15 Article Reviews – Rewrite Content from Amazon Product by herostatus
I need article reviews written like the article examples below: http://www.noisecancellingheadphonesratings.com/want-to-buy-the-jvc-hanc250-high-grade-noise-cancelling-headphones/ and this article:… (Budget: $30-250, Jobs: Article Rewriting, Articles, Proofreading)
Linked Elastix Servers (with HUDlite) by aussiep
There will be two Elastix servers (one Master, one backup) with HUDlite installed. There will also be a CRM database to integrate. Please only experienced installers to apply. (Budget: $250-750, Jobs: Asterisk PBX, CRM, Linux, System Admin, VoIP)
Project Assistant by ZeusCabous
I’m looking for a project assistant to help me run a project. This will require the project assistant to write tasks into documents and help me with the general running of the project. The budget for… (Budget: $30-250, Jobs: Project Management)
Create an iPhone version of a site by Morphart
See the site triple “w” [dot] granitperfection [dot] com I would like to have a iPhone compatible version of this site. Thanks for your time! (Budget: $30-250, Jobs: HTML, iPhone, Javascript, PHP)
Rewrite Technical FAQ by justinsuser
Rewrite a technical FAQ to be incorporated into a blog as a FAQ. Approximately 10,000 words, MUST BE PERFECT ENGLIS PLEASE.!! Keywords will need to be incorporated as well as a specific sales copy to be added with links for each individual FAQ… (Budget: $30-250, Jobs: Article Rewriting, Copywriting, Desktop Support, Technical Support, Technical Writing)
Globe iPhone and iPad App 2 by Stewbaca69
Before you bid on this, please realize that I am not looking to spend more than $300-400 on this project. This is a pretty simple iPhone and iPad app I need done. I already run a website and I need a portion of the website turned into an iPhone app… (Budget: $250-750, Jobs: C Programming, C++ Programming, Cocoa, iPad, iPhone)
Windows Application Icon by hairylemon
Create an icon for a Windows Application from an existing 2D logo. The existing logo is available as an .ai file. It should follow the Windows icon design guidelines in http://msdn.microsoft.com/en-us/library/aa511280.aspx (for example: it should be a 3D object)… (Budget: $30-250, Jobs: Illustration, Illustrator, Photoshop)
Smaller Tasks From a Bigger Project by ZeusCabous
I have a flash project. This flash project is to make a page with an input form. There are buttons on the right hand side to ‘add another input form’ and ‘delete input form’. The user can type into the input form… (Budget: $30-250, Jobs: Flash)
Stable Data Encoding Job (Part-time/Full-time) by hindichinese
We are looking for individuals who wants to earn money in the most simple way. Anyone can Apply for this job and it doesn’t require any necessary experience. Just have a Computer with Reliable Internet Connection, a clear eyesight and is hardworking… (Budget: $250-750, Jobs: BPO, Data Entry, Link Building, Technical Writing)
3DS Max renders – for ngluvakov only by aussiewebguru
We require further renders as discussed by Skype. Looking forward to doing further work together. (Budget: $30-250, Jobs: 3D Rendering)
Quick Tip: Making a Fancy WordPress Register Form from Scratch
In this tutorial, I will guide you through the process of making a beautiful “Register” form, using Fancybox, jQuery, and, of course, WordPress. As you’ll find, the process is really quite simple.
Step 1. The Markup
First, let’s place our button at the top of the page, replacing the default description in the theme.
<div id="registration"><a class="show register-button" href="#register-form">Register</a></div>
Notice that in the register button, the href (#register-form) is the same ID as the form below. We’re also using the class “.show” to call FancyBox with jQuery.

We need our base; let’s create our markup. Open header.php, and place this following snippet anywhere you’d like.
<div style="display:none"> <!-- Registration --> <div id="register-form"> <div class="title"> <h1>Register your Account</h1> <span>Sign Up with us and Enjoy!</span> </div> <form action="" method="post"> <input type="text" name="" value="Username" id="" class="input"/> <input type="text" name="" value="E-Mail" id="" class="input" /> <input type="submit" value="Register" id="register" /> <hr /> <p class="statement">A password will be e-mailed to you.</p> </form> </div> </div><!-- /Registration -->
Note that I’m using display:none to hide the form initially.
Step 2. CSS
The CSS is rather simple; I’m merely styling a quick form design in PhotoShop.
The form, minus the styling, looks like so: (note that I’ve removed the display:none in the markup to check my styles)

Let’s next begin styling our box.
div#register-form {
width: 400px;
overflow: hidden;
height: 230px;
position: relative;
background: #f9f9f9 url(images/secure.png) no-repeat 260px 40px;
font-family: Helvetica Neue, Helvetica, Arial !important;
}

Continuing on, I’ll now style the text inputs, adding some fanciness.
div#register-form input[type="text"] {
display: block;
border: 1px solid #ccc;
margin: 5px 20px;
padding: 9px 4px;
-moz-border-radius: 4px;
-webkit-border-radius:4px;
width: 200px;
font-family: Helvetica Neue, Helvetica, Arial !important;
}
div#register-form input[type="text"]:hover {
border-color: #b1b1b1;
}
div#register-form input[type="text"]:focus {
-moz-box-shadow: 0 0 3px #ccc;
-webkit-box-shadow: 0 0 3px #ccc;
}

Now, I’ll style the button, adding a hover state, and replacing the default button with an image.
div#register-form input[type="submit"]#register {
background: url(images/register.jpg) no-repeat;
border: 0;
clear: both;
cursor: pointer;
height: 31px;
overflow: hidden;
position: relative;
left:295px;
text-indent: -9999px;
top:42px;
width:92px;
}
div#register-form input[type="submit"]#register:hover {
background-position: 0 -32px;
}

Finally, we add some general styling.
div#register-form span {
display: block;
margin-bottom: 22px;
}
div#register-form div.title {margin-left:15px}
div#register-form div.title h1,
div#register-form div.title span {text-shadow:1px 1px 0px #fff}
div#register-form div.title h1 {
margin:7px 0;
}
p.statement {
position:absolute;
bottom:-2px;
left:10px;
font-size:.9em;
color:#6d6d6d;
text-shadow:1px 1px 0px #fff;
}
Voila! we have our form. Now, let’s move forward with the jQuery functionality.

Step 3. jQuery
First, we need to include jQuery within WordPress. To achieve this, we need to place the following chunk of code before the <head> tag within the header.php file. Remember, as WordPress itself utilizes jQuery, we don’t want to potentially load it twice!
<?php wp_enqueue_script("jquery"); ?>
<?php wp_head(); ?>
Download Fancybox and place it in your WordPress folder. To organize things a bit more, I’ve created an “Includes” folder.

Next, open your footer.php file, and place the following before the end of the </body> tag
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url'); ?>/includes/fancybox/jquery.fancybox-1.3.1.css" media="screen" />
<!-- Javascript -->
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/includes/fancybox/jquery.mousewheel-3.0.2.pack.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/includes/fancybox/jquery.fancybox-1.3.1.pack.js"></script>
And now, let’s call the fancybox method; paste this after the code above and before the closing body tag.
jQuery(document).ready(function() {
jQuery(".show").fancybox({
'titleShow' : 'false',
'transitionIn' : 'fade',
'transitionOut' : 'fade'
});
});
We’re done! Our form has been created; we lastly just need to pass the necessary WordPress information to make it function properly.

Step 4. WordPress
There is nothing fancy here; we only require two WordPress snippets, hidden within the wp-login.php file.
The first snippet:
<?php echo site_url('wp-login.php?action=register', 'login_post') ?>
And:
<?php do_action('register_form'); ?>
The final code should look like so:
<div style="display:none"> <!-- Registration -->
<div id="register-form">
<div class="title">
<h1>Register your Account</h1>
<span>Sign Up with us and Enjoy!</span>
</div>
<form action="<?php echo site_url('wp-login.php?action=register', 'login_post') ?>" method="post">
<input type="text" name="user_login" value="Username" id="user_login" class="input" />
<input type="text" name="user_email" value="E-Mail" id="user_email" class="input" />
<?php do_action('register_form'); ?>
<input type="submit" value="Register" id="register" />
<hr />
<p class="statement">A password will be e-mailed to you.</p>
</form>
</div>
</div><!-- /Registration -->
Please note that it’s really important, and necessary, to have user_login as a name and as an ID in your text input; the same is true for the email input. Otherwise, it won’t work.
And with that, we’re done!

Conclusion
With a touch of code, and some tweaks, we’ve managed to build a great looking “Register Form” for our users. What do you think?
Unique square, similar to penny auction by dannypro
Can you do me a website that people can win items by playing a game, for example the game having 1000 squares and they need to guess which one is the winning square by clicking the square and they guess it then they win the item, but first they need to buy clicks/bids and then play the game… (Budget: $30-250, Jobs: AJAX, Flash, Game Design, Graphic Design, PHP)