ThemeForest

Posts by bigtreat

63 posts
  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 2-3 years
  • Sold between 10 000 and 50 000 dollars
bigtreat says

thank you all of you i will improve my design

63 posts
  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 2-3 years
  • Sold between 10 000 and 50 000 dollars
bigtreat says

Thanks four your reply any body else

fillerspace said
The menu links don’t appear to be centered vertically (same with the categories on the portfolio page), and the spacing between the sections in the footer aren’t even (between the vertical lines and the content). The pagination links on the blog page have an extra white line for the active page. Those are all small fixes, and you should be good. You might have better luck selling it as a WordPress theme. With a killer admin panel, loads of shortcodes, and a killer unique feature, you could sell a lot more than as an HTML theme.
63 posts
  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 2-3 years
  • Sold between 10 000 and 50 000 dollars
bigtreat says

My theme is rejected , it need graphical Improvement Please help

http://www.reallybesthost.com/f_images/transforms/
63 posts
  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 2-3 years
  • Sold between 10 000 and 50 000 dollars
bigtreat says

Please Help if you can in this

http://themeforest.net/forums/thread/slidesjs-plugin-play-button-/46006

So use the post thumbnails for images and custom fields for the external link. Done. EDIT : Yeah, you can do what I understand bigtreat is suggesting: create post metaboxes where you input the links (which will, of course, be saved into custom fields).
63 posts
  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 2-3 years
  • Sold between 10 000 and 50 000 dollars
bigtreat says

So simply make the widgets to put the external links with images,

63 posts
  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 2-3 years
  • Sold between 10 000 and 50 000 dollars
bigtreat says

hi i want to make a start and stop button in slides.js plugin i use the following code

$(‘a#stop’).click(function(){ clearInterval( $(”#slides”).data(‘interval’));

});
$('a#play').click(function(){
});

this plugin is come under the http://www.apache.org/licenses/LICENSE-2.0

i do this In Inline script and stop button is working and i confused to make play button

plugin site http://slidesjs.com/

Please help me

63 posts
  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 2-3 years
  • Sold between 10 000 and 50 000 dollars
bigtreat says

Hi according to the license i can not edit the plugin so i tried the following codes but only stop button is working

$(‘a#stop’).click(function(){ clearInterval( $(”#slides”).data(‘interval’));

});
$('a#play').click(function(){
//what i do here
});

Hi, the problem is that the function stop() of the slider plugin is defined as private, which means you can call it only from this plugin. Off the top of my head there are two solutions: 1) Make the function public (Do the same for any function you want to be public)
this.stop() = function() {
            clearInterval(elem.data('interval'));
         }
Now you can call the function as you wish:
var slider1 = $('#slides').slides({
                someOptions
            });
$('a#stop').click(function(){
    slider1.stop();
});
2) Its more difficult solution but maybe its better. You can add two parameters to the options of the plugin (for example stopButton etc.) Now add this function to the plugin:
$(option.stopButton).click(function() {
    stop();
});
But I havent read the license of the slider. Maybe you are not allowed to change the source code of the slider. Its up to you to find it out. I hope it helps a bit.
63 posts
  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 2-3 years
  • Sold between 10 000 and 50 000 dollars
bigtreat says

thanks a lot maniacpc can you please tell me

apache license allowed me to modify the file or not or is there any to do from externally

here is the license http://www.apache.org/licenses/LICENSE-2.0

Please reply soon


Hi, the problem is that the function stop() of the slider plugin is defined as private, which means you can call it only from this plugin. Off the top of my head there are two solutions: 1) Make the function public (Do the same for any function you want to be public)
this.stop() = function() {
            clearInterval(elem.data('interval'));
         }
Now you can call the function as you wish:
var slider1 = $('#slides').slides({
                someOptions
            });
$('a#stop').click(function(){
    slider1.stop();
});
2) Its more difficult solution but maybe its better. You can add two parameters to the options of the plugin (for example stopButton etc.) Now add this function to the plugin:
$(option.stopButton).click(function() {
    stop();
});
But I havent read the license of the slider. Maybe you are not allowed to change the source code of the slider. Its up to you to find it out. I hope it helps a bit.
63 posts
  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 2-3 years
  • Sold between 10 000 and 50 000 dollars
bigtreat says

Hi i am trying to add the start and stop button on http://slidesjs.com/ slider but it is not working

function stop() {
            // clear interval from stored id
            clearInterval(elem.data('interval'));
        }
$('a#stop').click(function(){
    if($(this).text()  'stop')
    {
    stop();
    $(this).text('start').css("background-image", "url(images/play.jpg)");
});
}
else if($(this).text()  'start'){
                    pause();
$(this).text('stop').css("background-image", "url(images/pause.jpg)");
}
return false;

Please somebody help me

63 posts
  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 2-3 years
  • Sold between 10 000 and 50 000 dollars
bigtreat says

I am use a featured list jquery plugin to create a slider for my template

but the problem is that it is scrolling but after one time scroll ,it not scroll back to the first and last item of the list, for example my slides start with the li name is tony start but afterscrol it it not back to the first item , its stop at second item of the list

If you not understand please see the demo and check the code there is 10 LI but after one time scroll its not come back to the first LI

Demo http://reallybesthost.com/f_images/index.html

Please Reply soon

by
by
by
by
by