Friday, October 31, 2008

Taobao.com Launches B2C Services

With market share of more than 67 percent of China's online shoppers, Taobao.com opens doors to large manufacturers and retailers

HANGZHOU, China, 10 May 2006 - Alibaba.com Corporation announced today the launch of business-to-consumer (B2C) services on its Taobao.com online consumer marketplace. Already China's largest online consumer-to-consumer (C2C) marketplace, Taobao.com is expanding its e-commerce model to include products and services provided by major manufacturers and retailers.

"While American B2C models have failed to succeed in China, Taobao's model will make B2C a reality in China," said Toto Sun, Taobao.com's General Manager. "Because we are simply connecting large sellers to consumers, rather than taking possession of the goods and serving as a middleman, we are offering a solution that will benefit both manufacturers and consumers in China."

Already, Taobao.com has signed up manufacturers and retailers including Motorola, Nokia, Haier, Aigo, Lining, Adidas, Giordano, and UT Starcom. In the coming months, Taobao will aggressively expand its B2C services to include additional leading manufacturers and brands.

"Taobao's growth has been based on four pillars - trust and safety, the AliPay payment system, search and an active marketplace," Sun said. "With Taobao's trusted e-commerce community now leading the market, the site is the ideal channel for manufacturers and retailers to reach millions of consumers and to expand as online shopping becomes a part of everyday life in China."

More than 10 million small- and medium-sized businesses use other Alibaba.com online marketplaces for B2B marketing and sales, and Taobao.com expects to see a large number of Alibaba.com members joining its new program along with leading international companies.

Taobao.com's announcement comes after the China Internet Network Information Center announced this week the results of a new e-commerce study, which found Taobao holding 67.3 percent market share in Beijing, Shanghai and Guangzhou, versus eBay China's 29.1 percent. The recent data indicate significant market share growth from the fourth quarter of 2005, when Taobao.com was found to hold 57.7 percent market share by independent research firm Analysys International. Another recent study, by the Chinese Academy of Social Sciences, found Taobao.com to be the clear market leader in China, with 72.2 percent market share.

Taobao.com now has more than 26 million product listings, nearly 20 million registered users, and over 100 million page views per day. In 2005, Taobao's transaction volume, or Gross Merchandise Volume (GMV), reached US$1billion, up 700 percent from 2004. AliPay, China's leading online payment solution, recently reached 150,000 transactions per day.


About Alibaba.com Corporation

Alibaba.com Corporation is China's leading e-commerce company, operating the world's largest online marketplaces for both international and domestic China trade, as well as China's most popular online payment system, AliPay. Alibaba.com also owns and operates Yahoo! China, which it acquired in October 2005.

Alibaba.com's Businesses

Alibaba International (www.Alibaba.com) is the world's largest import-export marketplace primarily serving Small and Medium-Sized Enterprises (SME's) in the international trade community.

Alibaba China (www.China.Alibaba.com) is China's largest online marketplace for domestic trade among businesspeople.

TaoBao (www.Taobao.com) is China's most popular consumer-to-consumer trading site.

Yahoo! China (www.yahoo.com.cn), a division of Alibaba.com, is a leading Internet search brand serving China's consumers and businesses. In October 2005, Alibaba.com acquired Yahoo! China and formed a long-term strategic partnership with Yahoo! Inc.

AliPay is China's most popular online payment solution and enables individuals and businesses to securely, easily and quickly send and receive payments online.

Alibaba.com's Team
Alibaba.com was founded in 1999 and is based in Hangzhou, eastern China. It has approximately 3,500 employees, 14 sales offices across China and other offices in Beijing, Hong Kong, Silicon Valley and Europe.

Read More......

Friday, July 18, 2008

Olympic torch passed through Shenyang, NE China


Torchbearer Liu Hongtu, whose father Liu Changchun was China's
first Olympian, runs during the 2008 Beijing Olympic Games torch relay in
Shenyang, capital of northeast China's Liaoning Province, on July 17, 2008.
(Xinhua Photo)


Torchbearer Zhao Benshan, a famous comedian runs during the
2008 Beijing Olympic Games torch relay in Shenyang, capital of northeast China's
Liaoning Province, on July 17, 2008


Local people dressed in the ethnic costumes cheer for the 2008
Beijing Olympic Games torch relay in Shenyang, capital of northeast China's
Liaoning Province, on July 17, 2008.


Torchbearer Kang Hui (R-2) lights the torch for the next
torchbearer Raga Thomas during the 2008 Beijing Olympic Games torch relay in
Shenyang, capital of northeast China's Liaoning Province, on July 17,
2008.


Torchbearer Su Hongzhang lights the cauldron during the 2008
Beijing Olympic Games torch relay in Shenyang, capital of northeast China's
Liaoning Province, on July 17, 2008.


Local residents wave flags to greet the Olympic flame during
the 2008 Beijing Olympic Games torch relay in Shenyang, capital of northeast
China's Liaoning Province, on July 17, 2008.


Torchbearer Du Junfeng (R) and torchbearer Du Rongjie pose with
torches during the 2008 Beijing Olympic Games torch relay in Shenyang, capital
of northeast China's Liaoning Province, on July 17, 2008.(Xinhua Photo)

Read More......

Thursday, June 26, 2008

beautiful Wedding Dress


Read More......

3 Columns : Minima : Left and Right Sidebars


this Article from http://bguide.blogspot.com/2008/03/3-columns-minima-left-and-right.html

Article Series: 3 Column Step by Step Guides

Here are the steps to convert a default 2 column Minima template in to a 3 column template with two sidebars on left and right hand sides of the main post area.

(If you really want to understand what's happening here, read the article series Three Column Templates Explained.)

1) Add a new CSS id selector for the 2nd sidebar wrapper.

  • Go to Layout -> Edit HTML
  • Locate the #sidebar-wrapper section (Do a Find using your browser)
  • Copy that full section and paste below the existing sidebar section (it doesn't have to below) and rename it to #left-sidebar-wrapper
  • Change the float: $endSide to float:$startSide of this newly copied section (See the code snippet below)

#sidebar-wrapper {
width: 220px;
float: $endSide;
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
}

#left-sidebar-wrapper {
width: 220px;
float: $startSide;
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
}


2) Introduce a new div element, as a child of the content-wrapper, to be the placeholder for the 2nd sidebar
  • Locate the
    element.
  • Copy the code shown in red, above that section (this has to be above)





























3) Expand the width of the other wrappers to accommodate the new sidebar
  • Locate the CSS sections called #outer-wrapper, #header-wrapper and #footer
  • Change their width property to 880 pixels

#outer-wrapper {
width: 880px;
margin: 0 auto;
...
}


#header-wrapper {
width: 880px;
margin: 0 auto 10px;
...
}


#footer {
width: 880px;
clear: both;
margin: 0 auto;
...
}


4) Do necessary adjustments to margins, padding etc
  • Locate the #main-wrapper section
  • Insert a left margin of 12 pixels.

#main-wrapper {
width: 410px;
margin-left:12px;

float: $startSide;
...
}

Note: Step 5 is only needed if your Layout Editor does not show the newly added sidebar. There was an issue where the Firefox browser didn't show a 3 column template fully in the edit mode. But Blogger reports that the issue has been fixed now.

5) Modify the CSS rules for the wire frame layouts editor.
  • Locate the end of the skin denoted by "]]>"
  • Add the following code above that line.

/** Page structure tweaks for layout editor wireframe */

body#layout #outer-wrapper {
padding-top: 0;
width:720px;
}
body#layout #header-wrapper,
body#layout #content-wrapper,
body#layout #footer {
padding: 0;
width:720px;
}

body#layout #main-wrapper {
width:400px;
}

body#layout #sidebar-wrapper,
body#layout #left-sidebar-wrapper {
width:150px;
}

]]>


Save the template. Switch to Page Elements view and enjoy your 3 column template!

Read More......

Rounders 3 columnas template

Siguiendo con las modificaciones de plantillas, y a pedido de Rob x aquí les dejo las otras Rounders, (pero estas no las he modificado yo, sino que las he encontrado en internet)

Rounders 4 con 3 columnas
Blogger Template Rounders 4

Demo | descargar

Rounders 3 con 3 columnas
Blogger Template Rounders 3

Demo | Descargar

Rounders 2 con 3columnas


Rounders 3 columnas

Blogger Template Rounders

Demo | Download

Read More......

Tuesday, June 24, 2008

4 Column Template for Blogger


Blue 4 Column Template

Template for Blogger.4 Column Template for Blogger.Varieties of Templates.Green Template for Blogger.This is the Green template for Blogger. Whole Green Looks for Blogger. Download XML template:- Download

Green Template for Blogger

Template for Blogger.4 Column Template for Blogger.Varieties of Templates.Green Template for Blogger.This is the Green template for Blogger. Whole Green Looks for Blogger.
Download XML template:- Download


4 Column Fire Template

This is the 4 Column template for Blogger.Used In various Purpose.Easy to Use Just By Downloading or Editing it from Edit Html.
Download :- Download


Tuesday, 5 June 2007

Colourfull Template

This is the 4 Column template for Blogger.Used In various Purpose.Easy to Use Just By Downloading or Editing it from Edit Html.
Download Xml File
Or Edit It
by Downloading txt file :-Download



Thursday, 31 May 2007

4 Column template for Blogger

This is the 4 Column template for Blogger.Used In various Purpose.Easy to Use Just By Downloading or Editing it from Edit Html.
Download Xml File
---------------------------------------------------





Read More......

blogger template

CLICK ON THE TEMPLATE NAME TO DOWNLOAD THE TEMPLATE AT ONE CLICK!!!
Simplex
Download

This is the 4 Column template for Blogger.Used In various Purpose.Easy to Use Just By Downloading or Editing it from Edit Html.

Download Xml File
Or Edit It
by Downloading txt file :-Download
--------------------------------------------------

Read More......