KennyWilliams
- Author had a File in an Envato Bundle
- Microlancer Beta Tester
- Australia
- Exclusive Author
- Sold between 10 000 and 50 000 dollars
- Referred between 10 and 49 users
- Has been a member for 3-4 years
- Bought between 10 and 49 items
306
Purchases
Buyer Rating:
4.48 stars
4.48 average based on 25 ratings.
-
5 Star
1872%
-
4 Star
416%
-
3 Star
14%
-
2 Star
14%
-
1 Star
14%
| Created | 17 December 12 |
| Last Update | 13 April 13 |
| Columns | 3 |
| Compatible Browsers | IE7, IE8, IE9, IE10, Firefox, Safari, Opera, Chrome |
| Documentation | Well Documented |
| Layout | Responsive |
| ThemeForest Files Included | Layered PSD, HTML Files, CSS Files, JS Files |
- android
- app
- application
- clean
- css3
- full screen
- html5
- ipad
- iphone
- landing page
- marketing
- minimal
- mobile
- retina
- startup
© All Rights Reserved KennyWilliams -
Contact Envato Support


Love this simple theme. Pity it is not for wordpress. I see it comes with psd files. I assume I can get someone to code it into a wordpress theme for me?
Hey AussieJay, I am currently working to get this translated as a WP theme. Stay tuned
Fantastic! Another question, are you available for customizations? I’d like to develop a design that incorporates elements of other site designs you’ve created into the one theme.
Hi Jay, Yes I do customisations. Email me to discuss
Great work! Is there a way to start the slider first (instead of the text below) even if it sits there for 10-15 seconds waiting for the slides to download?
Thanks.
Hey, are you talking about the text and button within the slide? If so then the have a page loader is probably your best bet: http://bit.ly/1axEGj
Certainly a page loader is one solution. What I actually want is for users to look at slide1 (
etc.) for 10-15 seconds until everything loads. In my particular case, the above described solution is better than the users’ current viewing experience. In other words, I am presently forced to read the feature text underneath the slides (e.g. <!
- INSERT FEATURE TEXT -> etc.) for 10-15 seconds until the slides load. ThanksHey, Load times can always vary, and with full screen images it is important to crunch/compress the images as much as possible.
Whilst it’s not possible to preload just the first image at the moment, I have tried some alternative css tricks to alleviate the blank header while your slides load.
The best method is to set a min height for #slides div and then you can set a background image or color for it. Once the slides load this background image will simply be covered up by the slides.
#slides{ min-height: 480px; background-color: #333; /* or use background image */ }I note it would be important to set a general min-height that won’t be larger/higher than the slides themselves, especially on mobile devices. So I would also set individual min-heights in each of the Media Query break points for #slides. So for iPhones you wouldn’t want to set a min-height larger than the 480px high screen, however for desktop you could comfortably set it to 700px high.
This is not perfect solution for the viewing experience you want, my preference would still be to use a page loader script. Also going back to my first point making sure you have compressed your images as much as possible really does make a massive difference to load times.
Thanks!