thank you all of you i will improve my design
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.
My theme is rejected , it need graphical Improvement Please help
http://www.reallybesthost.com/f_images/transforms/Please Help if you can in this
http://themeforest.net/forums/thread/slidesjs-plugin-play-button-/46006digitalimpact said
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).
So simply make the widgets to put the external links with images,
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
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
});
maniacpc said
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.
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
maniacpc said
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.
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
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
