Showing posts with label Script. Show all posts
Showing posts with label Script. Show all posts
Saturday
Dzinerstudio Premium Themes - SMF
Themes that are included:
Twotone | Joli | Expo | Zentoa | Micolo | newBalance | Citiez | laGusta | IceCube | Surf&Turf | Zone99 | Express | Noize | DSv4 | Scratch | Cargo | Urban | Indigo | DSv1
To see a demo of these themes click here!
Themes version:
The version to use this themes is 2.0.x.
Download via Mediafire
http://www.mediafire.com/?5zibhzamoqqnwda
Password if Need : cyberraptor
Friday
IP.Board v.3.3.2 PROPER PHP Null FS
IP.Board gives users the tools and features they need to participate
easily and use the tools to manage focus and drive growth.
Successful communities have discussion at their core, which is why our
IP.Board forum software is the foundation of our community suite.
Whatever kind of community you run, IP.Board can help you achieve your
business goals by fostering vibrant discussion.
Download via Mediafire
http://www.mediafire.com/?a6537h2d4c8pifg
Wednesday
Multi Domain CMS
Categories :
Pemayung Web adalah sebuah Content Management System Multi Domain. Pemayung Web dibangun menggunakan bahasa PHP Hypertext Prepocessor pada sisi server dan JavaScript pada sisi client. Pemayung Web menggunakan database MySQL.
Pemayung Web dapat digunakan untuk membangun web dengan ribuan domain, subdomain dan direktori dalam satu database dan satu kali proses instalasi. Masing-masing web terpisah satu sama lain dan mempunyai tema serta isi sendiri. File yang diupload ke masing-masing web tidak akan bercampur satu sama lain. Sertiap web dapat dikelola oleh beberapa orang pengguna dan setiap pengguna dapat mengelola beberapa web dengan hanya menggunakan satu akun.
Pemayung Web menggunakan bahasa Indonesia untuk pengaturannya. Meskipun demikian, Pemayung Web dapat digunakan untuk membuat web dengan berbagai macam bahasa tergantung pada isi web dan template yang digunakan.
Untuk Detail bisa dilihat di situs official nya.
Fitur :
1.Multi Domain2.Multi Subdomain
3.Multi Directory (Multi Direktori)
4.Multi User (Multi Pengguna)
5.Multi Theme (Multi Tema)
6.Multi Language (Multi Bahasa)
7.Kendali Superuser
8.Keanggotaan
9.Pertemanan
10.Buletin
11.Pesan Pribadi
12.Editor WYSIWYG (2 macam pilihan)
13.Plugin Al Quran
14.Editor Bahasa Arab
15.Pengatur File/File Manager
16.Tampilan Mobile
17.Halaman Web (tanpa batas)
18.Artikel (tanpa batas)
19.Kategori Artikel (tanpa batas)
20.Arsip Artikel (tanpa batas)
21.Komentar Artikel (tanpa batas)
22.Pencarian Halaman dan Artikel
23.Pencacah Kunjungan
24.Kotak Pesan
25.Album Mini
26.Link (3 kelompok)
27.Jajak Pendapat (3 buah)
28.Kode Tambahan (10 buat)
Lihat Penjelasan Fitur.
Untuk Download bisa klik disini.
_http://www.pemayungweb.com/files/1/archive/pw/pw6.3.1.zip
_http://www.pemayungweb.com/files/1/archive/pw/pw6.3.1.zip
Slide Unlock Jquery JavaScript + CSS
Click Image to view Large |
HTML Code
<html>CSS Code
<head>
<meta charset='UTF-8'>
<title>Slide To Unlock</title>
<link rel='stylesheet' href='css/style.css'>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js'></script>
<script src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js'></script>
<script src='js/slidetounlock.js'></script>
</head>
<body>
<div id="page-wrap">
<div id="well">
<h2><strong id="slider"></strong> <span>slide to unlock</span></h2>
</div>
</div>
</body>
</html>
* { margin: 0; padding: 0; }Javascript Code
html { background: black; }
body {
font: 14px Georgia, serif;
background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #3b3b3b),color-stop(1, #000000));
background-repeat: no-repeat;
min-height: 350px;
}
#page-wrap { width: 720px; margin: 0 auto; padding-top: 100px; }
#well {
padding: 14px 20px 20px 20px;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
background: -moz-linear-gradient(top, #010101, #181818);
background: -webkit-gradient(linear,left top,left bottom,color-stop(0, #010101),color-stop(1, #181818));
border: 2px solid #454545;
overflow: hidden;
-webkit-user-select: none;
}
h2 {
background: -moz-linear-gradient(left, #4d4d4d, 0.4, #4d4d4d, 0.5, white, 0.6, #4d4d4d, #4d4d4d);
background: -webkit-gradient(linear,left top,right top,color-stop(0, #4d4d4d),color-stop(0.4, #4d4d4d),color-stop(0.5, white),color-stop(0.6, #4d4d4d),color-stop(1, #4d4d4d));
-moz-background-clip: text;
-webkit-background-clip: text;
-moz-text-fill-color: transparent;
-webkit-text-fill-color: transparent;
-webkit-animation: slidetounlock 5s infinite;
font-size: 80px;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
padding: 0;
width: 200%;
-webkit-text-size-adjust: none;
}
#slider {
background: url(../images/arrow.png) no-repeat;
width: 146px;
height: 98px;
display: inline-block;
vertical-align: middle;
line-height: 1;
}
@-webkit-keyframes slidetounlock {
0% {
background-position: -720px 0;
}
100%{
background-position: 720px 0;
}
}
$(function() {
$("#slider").draggable({
axis: 'x',
containment: 'parent',
drag: function(event, ui) {
if (ui.position.left > 550) {
$("#well").fadeOut();
}
},
stop: function(event, ui) {
if (ui.position.left < 551) {
$(this).animate({
left: 0
})
}
}
});
$('#slider')[0].addEventListener('touchmove', function(event) {
event.preventDefault();
var el = event.target;
var touch = event.touches[0];
curX = touch.pageX - this.offsetLeft - 73;
if(curX <= 0) return;
if(curX > 550){
$('#well').fadeOut();
}
el.style.webkitTransform = 'translateX(' + curX + 'px)';
}, false);
$('#slider')[0].addEventListener('touchend', function(event) { this.style.webkitTransition = '-webkit-transform 0.3s ease-in';
this.addEventListener( 'webkitTransitionEnd', function( event ) { this.style.webkitTransition = 'none'; }, false );
this.style.webkitTransform = 'translateX(0px)';
}, false);
});
Source Code Download
http://www.mediafire.com/?xewq6ftp7gl7bp9
Monday
IP.Board v.3.3.1 PHP Null Mediafire
Homepage : http://www.invisionpower.com/
Price : $149.99
Protection : Removed
Release Date : 12/04/2012
Version : v.3.3.1
Type : Nulled
Link Download Mediafire
http://www.mediafire.com/?gqoffbah09lgo85
vBulletin Forum v4.1.12 PHP Null
![]() |
Click Image to view Large |
Price : $195
Protection : Removed
Release Date : 13/04/2012
Version : v4.1.12
Type : Nulled
Install Info :
Upload file with File Manager -> Rename /includes/config.php.new to config.php
Credits Null : ForumScript
Link Download Mediafire
http://www.mediafire.com/?6d1ux1crb4x79b3
Sunday
List IP.Board 3.2.x Skins Mediafire Download Part 2
Lanjutan dari List IP.Board 3.2.x Skins Mediafire Download Part 1.
Read more...
Click Image to view Large |
http://www.mediafire.com/?e8ycw6cnaxpct63
Click Image to view Large |
http://www.mediafire.com/?tw061q6r6qe8m68
Click Image to view Large |
http://www.mediafire.com/?6x1z2ktnf6i8cgg
Click Image to view Large |
http://www.mediafire.com/?syp5xjwwvndg6jd
Saturday
List IP.Board 3.2.x Skins Mediafire Download Part 1
Click Image to view Large |
http://www.mediafire.com/?tw9g2thlcfd5l8g
![]() |
Click Image to view Large |
http://www.mediafire.com/?8esija5bk6597w2
Click Image to view Large |
http://www.mediafire.com/?j4aag0srxhnr5kb
Click Image to view Large |
http://www.mediafire.com/?xgzhxeuo4l5zbqh
Tuesday
11 IN 1 Script CMS
So, What's Eleven in One?
Generally speaking, blogs provide commentary and news on a wide variety of subjects and areas. In fact, blogs have gained increasing for their role in breaking, shaping, and spinning news stories. The ability of readers to leave comments in an interactive format is also an important part of blogs. This project contributes to the enhancement of the mainstream media by introducing a reliable open-source content management system called 11in1, which aims to properly managing blogs and pushing messages directly to the public.In fact, 11in1 makes use of certain technologies to reach the members of famous social networks such as Facebook and Twitter. 11in1 gets its name from the set of 11 features that comes with it, which are:
- The ability to add, edit, update and delete entries. 11in1 uses a very sophisticated JavaScript rich-text editor, which modifies the textual data straight away using a technique called WYSIWYG (What You See Is What You Get).
- The ability to let your visitors comment on any entry. 11in1 uses a built-in filter that singles out undesirable phrases and words. This feature can be turned on and off at any time.
- The ability to export entries and comments to social networks such as Facebook.
- The ability to communicate with your visitors via messages. CAPTCHA, a type of challenge-response test, is used to ensure that messages are generated by live people.
- The ability to let your visitors view the built-in guestbook, acknowledge their visitation and leave their name, postal or email address (if desired).
- The ability to modify the appearance by editing the HTML, CSS and JavaScript files that construct the template.
- The ability to track all users activities. The built-in monitoring system enforces security by granting you only access to restricted pages and resources.
- The ability to scan the entire system periodically for security threats and possible attacks. 11in1 generates daily reports that can only be viewed by the authorized users only in order to bring vital notices to their attention.
- The ability to backup up your date at any given time.
- The ability to keep in touch with your friends by linking their blogs to yours.
- The ability to change most or all of the settings through the use of the built-in control panel. Your control panel gives statistics and high-level view of the performance and status of blog and can only accessed by you. In order to have to access this control panel, you will be provided with a set of pre-defined username and password.
Sunday
Hipload - Free File Hosting PHP NULL
Free Files Hosting - start your own business with this script, offer free hosting to your visitors and repeat success of RapidShare or MegaUpload! Hipload is quick and easy, free file hosting. Easy to install and easy to use, allow your visitors to upload any files and share them with their friends.
Demo: http://www.hipload.com/
1-click to upload a file, makes it very friendly for your visitors, so you can start great online service in few minutes.
Very easy to customize with your own contents, images or styles, with sample terms page and contact form.
Key Features:
* Visual upload progress bar
* Unlimited files, unlimited filesize (depend on your server configuration)
* One-click to upload
* Web 2.0 design, easy to customize
* Easy to connect with Google Analytics, Google AdSense and other ad systems
* Contact form
* Illegal files report
o An email is sent to admin with detailed link, admin can download reported file and if it's illegal, remove it with 1 click.
* Configurable download process - with waiting time
* 4 links are created after upload:
o Download link
o HTML download link
o Forums download link
o Remove link, so user can delete his file at anytime.
* SQLite based (reuire PHP5), auto configurable (database is created automatically
Download Hipload - Free File Hosting
Very easy to customize with your own contents, images or styles, with sample terms page and contact form.
Key Features:
* Visual upload progress bar
* Unlimited files, unlimited filesize (depend on your server configuration)
* One-click to upload
* Web 2.0 design, easy to customize
* Easy to connect with Google Analytics, Google AdSense and other ad systems
* Contact form
* Illegal files report
o An email is sent to admin with detailed link, admin can download reported file and if it's illegal, remove it with 1 click.
* Configurable download process - with waiting time
* 4 links are created after upload:
o Download link
o HTML download link
o Forums download link
o Remove link, so user can delete his file at anytime.
* SQLite based (reuire PHP5), auto configurable (database is created automatically
Download Hipload - Free File Hosting
Multi Premium Link Generator Script - Support 30 Webhosting
Run your own Multi Premium Link Generator with this script. Support 30 Webhosting:
Rapidshare | Megaupload | Hotfile | Megashares | Extabit | Fileserver | Mediafire | Depositfiles | Netload | Easy-share | Filefactory | Badongo | 4shared | Uploaded |Uploading |Storage | FileSonic| Letitbit | and more
Support 30 Webhosting
Rapidshare | Megaupload | Hotfile | Megashares | Extabit | Fileserver | Mediafire | Depositfiles | Netload | Easy-share | Filefactory | Badongo | 4shared | Uploaded |Uploading |Storage | FileSonic| Letitbit |and more
Download Here
Saturday
Tips Menghemat Bandwidth dengan cache dan .htaccess
Categories :
Di hosting tertentu, kadang-kadang setting untuk caching file statis (di antaranya CSS, file gambar, JS, dll) tidak optimal.
Caching yang bagus akan menghemat bandwidth server.
Dan walau alokasi bandwidth anda sangat besar (misal anda udah pake VPS / dedicated server), caching yang optimal akan mempercepat loading total bagi user biasa.
Untuk mengoptimalkan caching, buat file ".htaccess" di root directory, lalu isi dengan kode berikut
(atau kalo sudah ada file ".htaccess" tsb, tambahin aja kode di bawah).
Read more...
Caching yang bagus akan menghemat bandwidth server.
Dan walau alokasi bandwidth anda sangat besar (misal anda udah pake VPS / dedicated server), caching yang optimal akan mempercepat loading total bagi user biasa.
Untuk mengoptimalkan caching, buat file ".htaccess" di root directory, lalu isi dengan kode berikut
(atau kalo sudah ada file ".htaccess" tsb, tambahin aja kode di bawah).
<ifModule mod_expires.c> ExpiresActive On ExpiresDefault "access plus 1 seconds" ExpiresByType text/html "access plus 1 seconds" ExpiresByType image/gif "access plus 259200000 seconds" ExpiresByType image/jpeg "access plus 259200000 seconds" ExpiresByType image/png "access plus 259200000 seconds" ExpiresByType text/css "access plus 60480000 seconds" ExpiresByType text/javascript "access plus 21600000 seconds" ExpiresByType application/x-javascript "access plus 21600000 seconds" </ifModule> <ifModule mod_headers.c> <filesMatch "\\.(ico|pdf|flv|jpg|jpeg|png|gif|swf)$"> Header set Cache-Control "max-age=25920000, public" </filesMatch> <filesMatch "\\.(css)$"> Header set Cache-Control "max-age=6048000, public" </filesMatch> <filesMatch "\\.(js)$"> Header set Cache-Control "max-age=2160000, private" </filesMatch> <filesMatch "\\.(xml|txt)$"> Header set Cache-Control "max-age=2160000, public, must-revalidate" </filesMatch> <filesMatch "\\.(html|htm|php)$"> Header set Cache-Control "max-age=1, private, must-revalidate" </filesMatch> </ifModule> <ifModule mod_headers.c> Header unset ETag </ifModule> FileETag None <ifModule mod_headers.c> Header unset Last-Modified </ifModule>
Friday
Daddy's File Host Script v1.2.2
Latest Updates:
24.08.11: Fatal Error fix, version updated to v1.2.2. Please replace ./upload.php in order for this fix to take effect.
17.08.11: Several bug fixes, version updated to v1.2.1. Please replace ./upload.php, ./styles/Indigo/header.php and ./download.php in order for this fix to take effect.
26.06.11: $HTTP_POST_FILES has now been replaced with $_FILES, in order for PHP 4.2/4.3+ to work without any problems. Centered image alignment also fixed, and UTF-8 support has now been added. Please replace ./basic.php, ./styles/Indigo/header.php and ./styles/Indigo/image_uploaded.php in order for this fix to take effect.
05.06.11: Language Support Added, followed by a few bug fixes. For this update to take effect, please replace all files apart from ./styles/Indigo/style.css, ./styles/Indigo/header.php and ./styles/Indigo/footer.php.
07.05.11: User Panel fix. This is a critical update and should be applied asap. Please replace ./pages/userpanel.php in order to apply the patch.
04.05.11: Download-Stats fix followed by the removal of tables found in report.php. Please replace ./report.php and ./auswerten.php in order for this fix to take effect.
Daddy's File Host v1.2 now released!
Daddy's File Host is a free open-source file and image hosting script. It is modeled after many popular free file hosts such as rapidshare and megaupload. It is easy to set up and does not require a MySQL database!
||||||New Features||||||
// User-side
- User Registration (+ captcha).
- User can view his/her files.
- User can delete his/her files.
- User can view his/her images.
- User can delete his/her images.
- Password Recovery (Forgotten Password Form, + captcha).
- Comparison table between a guest and a registered user.
- User can view all images uploaded if allowed by the Admin.
- User is provided with a delete link once an image is uploaded.
// Admin-side
- Admin can use the user's login form to access the AdminCP.
- Admin can view all users.
- Admin can delete users.
- Admin can set E-mail Activation to On or Off.
- Admin can set Max File Size for users.
- Admin can set Max Image Size for users.
- Admin can set DL Limit for users.
- Admin can set Delete After x many of days for users..
- Admin can choose to disable or enable image uploads.
- Admin can disable image listing.
// Script Design
- Improved menu navigator.
||||Overall Features||||
User Features:
- User Registration (+ captcha).
- View his/her files.
- Can delete his/her files.
- Can view his/her images.
- Can delete his/her images.
- Password Recovery (Forgotten Password Form, + captcha).
- Comparison table between a guest and a registered user.
- Can view all images uploaded if allowed by the Admin.
- User is provided with a delete link once an image is uploaded.
- Multiple File and Images Uploads
- Progress bar on both Image and File Uploads
- Upload Files On The Server
- Email link to themselves or a friend (If enabled by admin)
- Get the download and delete link which can be shared
- Report File links that violate terms of service
- Extra Stats Shown at the download page.
- View list of uploaded files (If enabled by admin)
- File Description (If enabled by admin)
- Password Protect (If enabled by admin)
- Catogeries (If enabled by admin)
Admin Features:
- Can use the user's login form to access the AdminCP.
- Can view all users.
- Can delete users.
- Set E-mail Activation to On or Off.
- Set Max File Size for users.
- Set Max Image Size for users.
- Set DL Limit for users.
- Set Delete After x many of days for users..
- Choose to disable or enable image uploads.
- Disable image listing.
- Set Maximum File size for users to upload
- Set and restrict File types and extensions
- Expire files after X amount of days without use
- Add Your Own Ads
- Set timer countdown on download page
- Enable/disable "Files List" viewable by public
- Reported illegal files stand out for deletion
- Ban IP addresses
- Choose style template
Read more...
24.08.11: Fatal Error fix, version updated to v1.2.2. Please replace ./upload.php in order for this fix to take effect.
17.08.11: Several bug fixes, version updated to v1.2.1. Please replace ./upload.php, ./styles/Indigo/header.php and ./download.php in order for this fix to take effect.
26.06.11: $HTTP_POST_FILES has now been replaced with $_FILES, in order for PHP 4.2/4.3+ to work without any problems. Centered image alignment also fixed, and UTF-8 support has now been added. Please replace ./basic.php, ./styles/Indigo/header.php and ./styles/Indigo/image_uploaded.php in order for this fix to take effect.
05.06.11: Language Support Added, followed by a few bug fixes. For this update to take effect, please replace all files apart from ./styles/Indigo/style.css, ./styles/Indigo/header.php and ./styles/Indigo/footer.php.
07.05.11: User Panel fix. This is a critical update and should be applied asap. Please replace ./pages/userpanel.php in order to apply the patch.
04.05.11: Download-Stats fix followed by the removal of tables found in report.php. Please replace ./report.php and ./auswerten.php in order for this fix to take effect.
Daddy's File Host v1.2 now released!
Daddy's File Host is a free open-source file and image hosting script. It is modeled after many popular free file hosts such as rapidshare and megaupload. It is easy to set up and does not require a MySQL database!
||||||New Features||||||
// User-side
- User Registration (+ captcha).
- User can view his/her files.
- User can delete his/her files.
- User can view his/her images.
- User can delete his/her images.
- Password Recovery (Forgotten Password Form, + captcha).
- Comparison table between a guest and a registered user.
- User can view all images uploaded if allowed by the Admin.
- User is provided with a delete link once an image is uploaded.
// Admin-side
- Admin can use the user's login form to access the AdminCP.
- Admin can view all users.
- Admin can delete users.
- Admin can set E-mail Activation to On or Off.
- Admin can set Max File Size for users.
- Admin can set Max Image Size for users.
- Admin can set DL Limit for users.
- Admin can set Delete After x many of days for users..
- Admin can choose to disable or enable image uploads.
- Admin can disable image listing.
// Script Design
- Improved menu navigator.
||||Overall Features||||
User Features:
- User Registration (+ captcha).
- View his/her files.
- Can delete his/her files.
- Can view his/her images.
- Can delete his/her images.
- Password Recovery (Forgotten Password Form, + captcha).
- Comparison table between a guest and a registered user.
- Can view all images uploaded if allowed by the Admin.
- User is provided with a delete link once an image is uploaded.
- Multiple File and Images Uploads
- Progress bar on both Image and File Uploads
- Upload Files On The Server
- Email link to themselves or a friend (If enabled by admin)
- Get the download and delete link which can be shared
- Report File links that violate terms of service
- Extra Stats Shown at the download page.
- View list of uploaded files (If enabled by admin)
- File Description (If enabled by admin)
- Password Protect (If enabled by admin)
- Catogeries (If enabled by admin)
Admin Features:
- Can use the user's login form to access the AdminCP.
- Can view all users.
- Can delete users.
- Set E-mail Activation to On or Off.
- Set Max File Size for users.
- Set Max Image Size for users.
- Set DL Limit for users.
- Set Delete After x many of days for users..
- Choose to disable or enable image uploads.
- Disable image listing.
- Set Maximum File size for users to upload
- Set and restrict File types and extensions
- Expire files after X amount of days without use
- Add Your Own Ads
- Set timer countdown on download page
- Enable/disable "Files List" viewable by public
- Reported illegal files stand out for deletion
- Ban IP addresses
- Choose style template
Sunday
Gelato CMS
Gelato CMS is a tumblelog CMS built on Ajax, PHP and Mysql.Gelato CMS is a open source Tumblr clone which has the same features as Tumblr. You can easily download and install Gelato CMS on your own web servers and start tumbling. Gelato also supports themes and plugins.
URL
http://www.gelatocms.com/
Download
http://www.gelatocms.com/enjoy/
CF Free Image Hosting Script Version 1.4b
One of the most important updates I believe for 1.4 is the better use of browser Cache Control for images. What will reduce the bandwidth used, the load on your server and speeding up your site.
Random Image widget
Will show 4 random images from the Gallery on the bottom of your index and thumbnail page.
Disallow Duplicate Images
This new ability allows you stop users from uploading duplicate images or images that have been uploaded by other users.
New image format (PSD)
You're now able to upload Photoshop files .PSD, which will be converted to PNG's on upload.
Other New Features
Frequently asked questions page.
Resize Image on upload
New google URL shorter
More site themes
Updated Admin layout
And alot of other improvements...
Demo/Info
http://www.codefuture.co.uk/projects/imagehost/demo/
Download
http://www.mediafire.com/?xc9cadiqznabxx2
Tv stream script nulled
Categories :
Our groundbreaking script is an all-in-one solution for all your problems as a website owner. The built in automatic tools will help you to get unlimited content and traffic to your website in as little time as possible
Read More
Order Now
Services
Feature highlights
* Semi-automatic Content grabber
* Content submitter to 5 sites
* Detailed traffic statistics
* Dead video checker
* 5 amazing, free templates
* Star rating, commenting, link submit
Demo/Info
http://tvstreamscript.com/demo.html
Download
http://www.megaupload.com/?d=ZMD2LN5J
Free image gallery - (Tinypic clone)
Most open source scripts we see are having a plainer theme which looks quite boring. There strategy is to sell templates and still tell themselves open source script makers. Whatever it be, but Chevereto have come up with a professional design image gallery script and that too free. I have never seen such a good looking open source photo gallery script before.
Features
* One can upload images anonymously
* Every image has a page which can be used to develop gallery thereafter
* Get short-codes for forum embedding and bookmarking image thereafter
* Social bookmarking icons to bookmark the image page thereafter
* Powerful admin control to delete images
* Clearly define which can be uploaded
Download - http://www.maknyos.com/pnuf302yvo2g/chevereto_nb1.91-maknyos.com.zip.html
Solaris ReDux 3.2.1 Skin For IPB 3.2.x
Solaris ReDux pays homage to a wonderful theme which has been one of my personal favorites for years. Like it's namesake, Solaris ReDux is a sleek dark fixed width skin and features orange highlights plus an added pure css dropdown menu.
Download
http://www.mediafire.com/?yi9vto4wfmyb1nv
Subscribe to:
Posts (Atom)