Google Ranking For Joomla Si 2

Google Ranking For Joomla Si 2

For one of our clients we have a Joomla website of about 50 pages. Now we want the website to be better found in Google and the source of the pages is already filled with keywords. We would like to have:
– The website found by Google when corresponding keywords are used (since the market isn’t very big in the business of this webiste that shouldn’t be hard)
– Google analytics inserted

WordPress Blogs Setup

WordPress Blogs Setup
This should be a really easy job for someone with wordpress experience. I have 5 websites that I need wordpress installed on and plugins set up on.

I will provide the list of plugins, login information, settings, database information etc so they can be set up.

I will also provide the themes that I want each to use.

$50
Time for completion 48 hours.

Joomla Fix And File Updating

Joomla Fix And File Updating

My site uses CMS Joomla and has suddenly stopped functioning properly and thus cannot preview or edit in joomla. In additional, the flash and map integration function in the website that was working before is not linked or working properly now.

Looking for an expert who is qualified and secure to revise the site which includes: fixing and updating the site to latest joomla version, installing various add-on to increase security, and fine tuning joomla to work properly.

Exclusive Free PSD Templates for Premium Members

Exclusive Free PSD Templates for Premium Members

We’re going to try something a bit different this week for our Premium members. I have three exclusive, and fantastically designed PSD web templates available, built by the very talented Dany Duchaine. Help give back to Tuts+ by signing up for a Premium account.

Each of these three PSD themes are fully-featured, containing at least five subpages. If you’re ready to build your next website, but aren’t much of a designer, one of these templates, exclusive to our Premium members, will surely do the trick!

A&D
A&D
A&D

Join Net Premium

NETTUTS+ Screencasts and Bonus Tutorials

For those unfamiliar, the family of TUTS sites runs a premium membership service. For $9 per month, you gain access to exclusive premium tutorials, screencasts, and freebies from Nettuts+, Psdtuts+, Aetuts+, Audiotuts+, and Vectortuts+! For the price of a pizza, you’ll learn from some of the best minds in the business. Sign up for a Premium account!



The Intricacy of Simplicity: CSS3

The Intricacy of Simplicity: CSS3

Ever wondered how a particular effect was achieved in a web design, and, after zooming in several clicks, you found that the author added several subtle shadows, borders, gradients, etc? In the past, this was achieved simply by slicing out an image, and setting it as a background of some element. Luckily, with CSS3, we can be afforded much more flexibility. Now, while the code for such a simple effect might be a bit tedious, it’s well worth it, and that’s what we’ll review in today’s written and video quick tip!


Video Version

Rather watch this screencast on Screenr.com?


Text Version

It’s amazing that something this simple requires that much code, but, it’s not too rough, and can easily be abstracted away to a snippet for future use.


Step 1. Create the Mark-up

To make our project as cut-and-paste as possible, we’re only working with an empty div. Create a new index.html file, and paste in the following:

<body>
     <div id="box">

	</div>
</body>

Step 2. Create the Canvas

Next, we’ll add some basic styling for the body element. This is just for the presentation, and can easily be removed. Within style tags in your header, add:

/* Nothing special here. Just the canvas. */
body {
	width: 500px;
	margin: 60px auto 0;
	background: #666;
}
Body Styling

Step 3. Styling the Box

Now, we’ll create our box, supplying a width and height.

#box {
	/* Just a box */
	width: 500px;
	height: 500px;
}
Box

Step 4. Rounded Corners

We should all know about CSS rounded corners by now. Let’s go ahead and implement that.

/* Rounded corners */
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
Rounded corners

Note that we’re also supplying the final spec, of “border-radius,” in addition to Mozilla and Webkit’s versions.


Step 5. Border Colors

Mozilla offers a handy property, called “-moz-border-*-colors.” This allows us to set an infinite number of colors for a border. To achieve a subtle “double-border” effect, let’s implement this property.

/* Set a base border and color */
border: 2px solid white;

/* Multiple border colors in Gecko */
-moz-border-top-colors: #292929 white;
-moz-border-right-colors: #292929 white;
-moz-border-bottom-colors: #292929 white;
-moz-border-left-colors: #292929 white;

Note how the number of colors we supply are the same as the border width that we set at the beginning (2px). Also, don’t place commas after each hex value; I made that mistake at first!

Border Colors

Step 6. Compensating for Webkit

To the best of my knowledge, webkit doesn’t currently support border-colors, though it’s possible that I’m wrong. If I am, please leave a comment and let me know! Anyhow, to mimic this effect as best as we can in Safari and Chrome, we’ll use box-shadow.

/* Compensate for Webkit. Not as nice, but works. */
-webkit-box-shadow: 0 -1px 2px #292929;

Note that the provided values refer to the X offset, Y offset, blur, and shadow color, respectively. By passing -1px as the Y offset, we can push the shadow upwards.

In Safari

Step 7. CSS Background Gradients

The final step is to supply a subtle background gradient for our box. However, we must be sure to provide a fallback solid color for the browsers that don’t support CSS gradients.

/* Background subtle gradient, with fallback to solid color */
background: #e3e3e3;
background: -moz-linear-gradient(top, #a4a4a4, #e3e3e3);
background: -webkit-gradient(linear, left top, left bottom, from(#a4a4a4), to(#e3e3e3));

Unfortunately, Mozilla and Webkit don’t quite agree on the syntax for gradients, which makes the process extra irritating. If it’s too confusing, you can use a new service called CSS3 Please to auto generate each browser’s syntax; it’s very cool!

Final Product

You’re Done!

It’s amazing; looking over our final image, it’s hard to tell what we actually did! But this is a good thing; subtlety is key in all aspects of design. Thanks for reading/viewing!


Final Code

/* Nothing special here. Just the canvas. */
body {
	width: 500px;
	margin: 60px auto 0;
	background: #666;
}

#box {
	/* Just a box */
	width: 500px;
	height: 500px;

	/* Rounded corners */
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;

	border: 2px solid white;

	/* Multiple border colors in Gecko */
	-moz-border-top-colors: #292929 white;
	-moz-border-right-colors: #292929 white;
	-moz-border-bottom-colors: #292929 white;
	-moz-border-left-colors: #292929 white;

	/* Compensate for Webkit. Not as nice, but works. */
	-webkit-box-shadow: 0 -1px 2px #292929;

	/* Background subtle gradient, with fallback to solid color */
	background: #e3e3e3;
	background: -moz-linear-gradient(top, #a4a4a4, #e3e3e3);
	background: -webkit-gradient(linear, left top, left bottom, from(#a4a4a4), to(#e3e3e3));
}



Html Slicing For Joomla Page

Html Slicing For Joomla Page

I have an EASY to do slicing for and HTML joomla landing page.

This really is an easy to do project and should be fast for someone who knows what they are doing.

This page consists of text, a few graphics, and an easy to install javascript snippet for the aweber webform. (Plugin required for Joomla to use the javascript).

This really is an easy, straight forward project.

PLEASE NOTE:

—- EXPERTS ONLY!!! ——

THIS NEEDS TO BE 100% to my satisfaction. I need it to look exactly like the provided .psd file.

Feel free to PM with any questions you may have.

Thanks!

Ecommerce Website Redesign

Ecommerce Website Redesign
I need to do a website design makeover for the-buckle.com…the website looks graphically dull and unattractive to the visitors. I need it looking like the latest web 2.0 style design..Logos and multiple banners for coupon,different buckles,etc.. needed. there are different templates other the one you see with place to put different size banners.

Effective Copywriter Required

Effective Copywriter Required
hello

we need some very effective and persuasive copy to be written – the piece should be not too long and too short – but it should be able to get the message and benefits across

the aim of the copy is to promote a promotion for our affiliate campaign for the month of may. at present the commission structure is:

1+ sales per month 6% of order value
11+ sales per month 8% of order value
25+ sales per month 10% of order value
51+ sales per month 15% of order value

throughout the month of may we will be adding an extra 6% to the above commissions. so affiliates can earn, 12%, 14%, 16% and up to 21%

this is to help active affiliates to push the products further and to help activate current inactive affiliates

benefits of the program (http://www.paidonresults.com/merchants/natural-elements.html)

– 365 cookie length
– no restrictions
– high commission rate – guaranteed of a reasonable payback from your efforts
– free shipping on all orders
– free gift on orders over £55

any queries please revert back – remember not looking for something too long. it needs to be concise yet will get people to take action throughout the month of may 2010

thank you

Upload Form Php Script

Upload Form Php Script
This is super easy for an experienced php programmer. I have
website that we have a webform created that needs to send
data to the database.

I have a webform that I need the information passed
over to a database.

The webform is here:
http://screencast.com/t/NjNkNmQ5NDct

And I need it hooked up to the database here:
http://screencast.com/t/NDM1MGQxM

There is also some more work to be done on this website
for the programmer.

Please only bid if you have much experience with php
development and are fast and easy to work with.