An introduction to support on the Marketplaces
- Envato staff look over every item before it can be sold on the Marketplaces.
- Technical items contain help files to introduce you to the item and its components.
- Authors can choose to support their items but this is optional and may vary.
Hands-on support for this item is provided by bloooming
Frequently Asked Questions
How to add previous and next buttons for the slider?
This will remove the dots, and add previous + next link:
Start with markup.js, find the section with $(’#slider’).easySlider and replace it with:
$("#slider").easySlider({
auto: false,
continuous: true,
numeric: false,
prevText: '« Previous ',
nextText: ' Next »',
speed: 2000
});
$('#slider').after('<div id="slidernav" />');
$('#prevBtn').appendTo($('#slidernav'));
$('#nextBtn').appendTo($('#slidernav'));
then open your stylesheet, and paste this code at the end of the file:
#slidernav {
text-align: center;
padding: 12px 0 0 0;
}
#prevBtn a, #nextBtn a, #playstop a {
color: #a4a29c;
font-size: 11px;
font-weight: bold;
cursor: pointer;
}
#prevBtn a:hover, #nextBtn a:hover, #playstop a:hover {
color: #666563;
}
When to contact Envato Support
Authors are experts on their own items, but if you're having trouble using the Marketplaces you should come straight to Envato Support.

