Moving Images and CSS to different domain to speed up site

Moving images and CSS to different domain (some large sites use static.domain.extn) can speedup site loading.

To do this, copy (do not move) folders images and css including sub folders to different domain or sub domain, then edit include/vshare.php

Edit include/vshare.php

Find

Code:
define('IMG_CSS_URL', VSHARE_URL . '/templates');
Replace with

Code:
define('IMG_CSS_URL', 'http://static.yourdomain.com');

Note: vshare need logo, watermark image and profile css on local server, moving it to remote static server is possible, if you do, uploading though admin area will stop working.

HOWTO