translate from eng. to bahasa malaysia and bahasa Indonesia by Zinze

Hello, I would like to know if you could provide a Headline and Copy for an Advertising Press Ad. I would be providing the text in English and asking you to creatively adapt it to Bahasa Malaysia and Bahasa Indonesia Timeline: Less than 24 hours… (Budget: $30-250, Jobs: Academic Writing, Article Rewriting, Articles, Copywriting)


Ipb3 Style To Vb4

IPB3 Style on vB4 Suite

A simple port featuring styling from IPB3. Features some new thread marker icons. Changed around the search box to allow more room for the navigation bar to spread out if sites have more than normal tabs. Be aware that for the tab size it is 120px for the tab image alone. Don’t make your site width shorter than your navbar tabs width. Otherwise you’ll break it. For any additional header image it’s suggested to use the following template to insert them into. AdminCP->Styles & Templates->Style Manager->IPB Style->Edit Templates. Select Ad Location Tempaltes->ad_global_header1. It’s a blank template so just insert the image code.

To Install:

* GoTo AdminCP->Styles & Templates->Download / Upload Styles and import the xml file into a new style
* FTP the image folder into your root forum directory. This will create a directory images/IPB.

I’ve checked out the layout for IE 7, Firefox 3, Safari 4, and Chrome. Any other browsers I haven’t see what it looks like. IE6 may have some issues because of the png files.

Included is the zip file:
Image Directory with images.
XML File to import
PSD logo to add your own logo/graphics

Supported Layouts for vBulletin
-CMS
-Forums
-Blogs

To check out a live demo go here.

Version 1.01 for vB4.0.1

Verson 1.02 for vB4.0.2

* Corrected collapse headers.
* Straightened Out Icon Legend on forum display
* Fixed Width should be adjustable within reason
* Search taken out of navbar and placed in header.
* Formatted the Blog and CMS to match the forums.

Verson 1.04 for vB4.0.4P1

* Updated images
* Fixed/Updated templates with security token authentication.
* Adjusted image icon legend for spacing.

Should be okay now.

Modify My Blog Module To Show

My Blog created by azrul.com is what i am using for our blog system

i want the myblog w/ intro text module

to be modified so that it not only shows intro text

but also if the blogpost has pictures in it to show a thumbnail image of that picture

if the blog post has no pictures …show a default image…

and also give the module the option to filter out by category

i have attached 2 files…one is the module…and one is a picture of what i am trying to achieve…. so look closely 🙂

WordPress Plugin Modification

Hi, I need someone to edit wordpress plugin according to requirements. When I installed this plugin I am getting the wordpress category with alphabetic. Pls find the plugin & instruction document in attachment.

just complete this task and send me link. once I satisfied with your work.I will select you and pay immediately.

before you start the project pls send “I am working now” in PMB, so I will wait for you.

Note: I need to complete this now.

Thanks

Blog/news Layout And Content Writing

I need a blog & newsletter pages layout done, and content writing done in full english grammar. The topics will be interesting and will be no less than 500 words. I must be able to add products to buy within the article. You will research latest news from a minimum of 10 suppliers, and use keywords with a maximum of 4% within each the article. Copyscape will be used to identify originality. Should you be successful there may be monthly updates required.

Our site is www.thetoolboxscotland.co.uk

PLEASE SUPPLY A SAMPLE OF HOW YOU WILL START THIS BLOG/NEWS

Time is very important, please do not bid if you cannot hold to your deadline.

Long Term Job

we want to hire ‘one’ freelance person to copy and paste real estate photos and text, such as:

bedrooms bathrooms square footage photos of the property for sale

you will be copying it from one website and pasting it into another website

and .we also need you to advertise each of these real estate properties on http://Odesk.data.justmore.us

Pickme

Pick-Me is a Windows based desktop application which will randomly select individuals or groups of people/pupils/students. This software is primarily aimed at the education sector for example a class teacher may need to split the class pupils/students into groups or teams for a task. With this software the teacher merely enters the student names, task etc and the software randonly picks the groups – along with titles, task names etc and displays it on screen in a graphic image. The software would also allow print-outs of the selected students, groups, tasks.

The software would need to be kept under the 50Mb limits to enable easy download from our web site.
The software would also need the installation section to include a software registration process using a registration number issued at purchase.

We are looking for a coder who has excellent abilities in database programming (possibly MySQL or MSAccess), screen rendering with 3D graphics and coding from installation package stage (either C++ or VB) and who can render and manipulate graphics in code – to reflect the exact design.

We will supply the design in MS-Publisher document where the graphics and images must be used in the software. Also supplied will be a MS-Word narrative and instruction document.

The selected coder will put forward a competitive bid based on the fact that future work on the Pick-Me project will be forthcoming. This must be reflected in the bid costs.
Importantly, the project MUST BE Completed in 40 days.

Quick Tip: Embed a Transparent Flash Movie with CSS – Basix

Learn how to export a Flash Movie with a transparent background and embed it in an HTML file.


Step 1: Brief Overview

Using a publish option in Flash and a little bit of CSS, we’ll embed a transparent Flash Movie on top of HTML content.


Step 2: Choose a Flash File

Select the file you want to use with a transparent background, I used the Random Ease Candle template included in Flash CS5.


Step 3: Publish Settings

With your file open, go to File > Publish Settings, click in the HTML tab and change the window mode to Transparent Windowless.

Click the Publish button to export the corresponding swf and html file.


Step 4: HTML

You can get the exact same result by setting a parameter in the HTML file you’re using.

Let’s take a look at that part, starting in the flashContent div.

<div id="flashContent">
	<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="320" height="240" id="Transparent" align="middle">
		<param name="movie" value="Transparent.swf" />
		<param name="quality" value="high" />
		<param name="bgcolor" value="#ffffff" />
		<param name="play" value="true" />
		<param name="loop" value="true" />
		<param name="wmode" value="transparent" />
		<param name="scale" value="noscale" />
		<param name="menu" value="true" />
		<param name="devicefont" value="false" />
		<param name="salign" value="" />
		<param name="allowScriptAccess" value="sameDomain" />

The highlighted line is the parameter that sets the movie in transparent mode.


Step 5: A Little CSS

Opening the html file in your browser will give you the transparent background we’re looking for, but without content it will be impossible to notice.

To fix that we’ll use a little bit of CSS, open the file and add the following to the flashContent ID.

#flashContent { width:100%; height:100%; position:absolute; left: 0; top: 0;}

This will place the flash movie on top of the content revealing the effect.

Note: Bear in mind that any interactive HTML content (hyperlinks for example) behind your Flash movie will be rendered unusable.


Conclusion

Now you know how to publish this kind of movie, it’s your job to implement it in a creative way. Experiment!

Thanks for reading!