Discussion on Jollyness - Multi Purpose HTML5 Website Template

Discussion on Jollyness - Multi Purpose HTML5 Website Template

Cart 624 sales
Well Documented

JollyThemes supports this item

Supported

This author's response time can be up to 2 business days.

132 comments found.

Hi,

I have purchased this template, now i want to tag multiple locations in google map at contact us page. How do i do it. Kindly help me.

Thanks

Can u show me an example screenshot please? I will help you.

Thanks, I have solved this problem.

Thats Nice :) If u have any quries, please contact me :)

If u like our template and support. Dont forget to give 5 Star Rating ;)

Hi! Tried asking on Support Forum but haven’t heard back.

Bought this theme, we love it, but we have a problem. On scrolling down, the top inches of the page content sort of ‘jump’ under the sticky header. As soon as you start scrolling down one of the pages, the top bit of content (usually the headline or whatever,) jumps underneath the header, and cannot really be seen at all.

Here’s an example page: https://www.telaway.net/newsite/features/prepaid-unlimited-usa-calling.aspx

And here’s a video showing the problem: https://www.youtube.com/watch?v=XgDNgceOfsk

THANKS

I am very sorry about late answer because of holiday in my country.

Any problem solved or need any help?

Still having an issue that the animations (like icons turning) aren’t working on IE. You can see live site here: www.telaway.co.uk THANKS!!

Hello

Which version did u use for IE ? Please share with me. Let me check what is wrong.

How can I make the width of the revolution slider smaller? The height I can change but the width doesn’t change when I edit the startwidth option in the revolution slider settings at the bottom index.html. The size I would like is 900×620.

Hello my friend,

Did u use like this ?

    <script type="text/javascript">
        var revapi;
            jQuery(document).ready(function() {
                revapi = jQuery('.tp-banner').revolution( {
                    delay:9000,
                    startwidth:900,
                    startheight:620,
                    hideThumbs:10,
                    fullWidth:"on",
                    forceFullWidth:"off" 
            });
        });    //ready
    </script>

Yes, that is what I used. If I modify the value of the startheight, say from 620 to 420, it works, but when I try to change the value of startwidth, it doesn’t matter what value I use it stays the same width. I am using the box layout.

Hi

is it possibile to upgrade revolution slider to newest version? I would like to enable caption effects that seem no to be available on the version provided with the template (4.2.5). It would be great to have 4.6.

Thanks Pietro.

Hello,

Send me an email from pricate with your username : support@jollythemes.com I’ll send you latest version of this slider.

Thanks for stop us.

Regards.

Hi! I bought it on my other acc! I’ve just seen, that the menu isn’t working very well when you’re checking the page on the ipad.

Is it possible to fix it (perhaps start the burger earlier?)

:)

Hey, thanks for your feedback. I checked the demo site with simulators (iPhone, iPad) and its worked perfectly for me. But I will double check for you.

Regardsç

Hi, in portafolio i don’t found how to use YOUTUBE , i just see that VIMEO works great i need to use youtube, please help

Hello

Do u asked here : http://jollythemes.com/html/jollyness/white-jollyness/single-portfolio-3.html ? Its worked with embed code just use youtube embed.

Hi, I’m trying to put masonry elements http://jollythemes.com/html/jollyness/white-jollyness/blog-masonry.html in layout with sidebar on the right http://jollythemes.com/html/jollyness/white-jollyness/blog-one-column.html. I’m experiencing problems on firefox, masonry items do not fit the space available. I bring code from this page: http://jollythemes.com/html/jollyness/white-jollyness/blog-masonry.html and I see one js error: Uncaught ReferenceError: getColumnNumber is not defined

Can you help me?

Hello,

I contacted with my developer for this buggy, Waiting reply from him, when he fix this problem we will update this template.

Regards and thanks you so much for report.

Ok, when do you think the problem will be solved? Thanks

Hello,

Thanks for contact us again.

Please open blog-masonry.html page and go below search for

    <script>
        // Portfolio
        (function($) {
        "use strict";
            var $container = $('.blog-masonry'),
                $items = $container.find('.blog-columns'),
                portfolioLayout = 'masonry';

            if( $container.hasClass('portfolio-centered') ) {
                portfolioLayout = 'masonry';
            }

            $container.isotope({
                filter: '*',
                animationEngine: 'best-available',
                layoutMode: portfolioLayout,
                animationOptions: {
                    duration: 750,
                    easing: 'linear',
                    queue: false
                },
                masonry: {

                }
            }, refreshWaypoints());

            function refreshWaypoints() {
                setTimeout(function() {
                }, 1000);   
            }

            function setColumns() {
                var winWidth = $(window).width(), 
                    columnNumber = getColumnNumber(), 
                    itemWidth = Math.floor(winWidth / columnNumber);

                $container.find('.blog-columns').each(function() { 
                    $(this).css( { 
                        width : itemWidth + 'px' 
                    });
                });
            }

            function setPortfolio() { 
                setColumns();
                $container.isotope('reLayout');
            }

            $container.imagesLoaded(function () { 
                setPortfolio();
            });

            $(window).on('resize', function () { 
                setPortfolio();          
            });
        })(jQuery);
    </script>

and replace to

<script>
        (function($) {
            "use strict";
            var $container = $('.blog-masonry'),
                $items = $container.find('.blog-columns'),
                portfolioLayout = 'masonry';

                if( $container.hasClass('portfolio-centered') ) {
                    portfolioLayout = 'masonry';
                }

                $container.isotope({
                    filter: '*',
                    animationEngine: 'best-available',
                    layoutMode: portfolioLayout,
                    animationOptions: {
                    duration: 750,
                    easing: 'linear',
                    queue: false
                },
                masonry: {
                }
                }, refreshWaypoints());

                function refreshWaypoints() {
                    setTimeout(function() {
                    }, 1000);   
                }

                function getColumnNumber() { 
                    var winWidth = $(window).width(), 
                    columnNumber = 1;

                    if (winWidth > 1200) {
                        columnNumber = 3;
                    } else if (winWidth > 950) {
                        columnNumber = 3;
                    } else if (winWidth > 600) {
                        columnNumber = 2;
                    } else if (winWidth > 400) {
                        columnNumber = 2;
                    } else if (winWidth > 250) {
                        columnNumber = 1;
                    }
                        return columnNumber;
                    }       

                    function setColumns() {
                        var winWidth = $(window).width(), 
                        columnNumber = getColumnNumber(), 
                        itemWidth = Math.floor(winWidth / columnNumber);

                        $container.find('.blog-columns').each(function() { 
                            $(this).css( { 
                            width : itemWidth + 'px' 
                        });
                    });
                }

                function setPortfolio() { 
                    setColumns();
                    $container.isotope('reLayout');
                }

                $container.imagesLoaded(function () { 
                    setPortfolio();
                });

                $(window).on('resize', function () { 
                setPortfolio();          
            });
        })(jQuery);
</script>

Hi,

My site load its eternal, can you help me.

Some times appears all broken, ugly, i need load a few times.

Thank you. www.maqse.mx

Hello my friend,

I checked your site 10+ times but site not loading. What’s happened?

Can u re-upload your files to the server? Waiting reply.

Hi, sorry i have a construction index… can you try again please… www.maqse.mx

hi , The tabs do not work properly . When you load the page the text does not match the active tab. Can you review it ?

Thanks.

Dear my friend,

Please forgive us for late answer because of Eid time. So, we are working on Jollyness big update please give me some days for the update.

Regards.

The navigation menu does not function (no drop down) or appear normally (it’s all white when it should be dark) in IE9. Also, the main banner slider does not load images, the preloader just spins and spins. How can this be corrected? I can send a screen capture or URL via email. Thanks so much!

Hello,

I just bought the template but I see that is not psd. How I can get them? I need them urgently.

Thanks.

Hello,

We attached PSD layer’s to the zip you didn’t get? Waiting reply.

No, I didn’t get any PSD. Can you send them to me please?

Thanks.

Hello mate,

re you sure no PSD? please check this image : https://www.dropbox.com/s/w11vleddgavqtny/jollyany.jpg?dl=0

I re-download from ThemeForest panel and after unzip i see the jollyany-psd folder.

Please re-check or re-download.

How to create the social icons as given in demo

Please leave a comment with your purchase account, I will help how to.

Regards.

Hello guys I cant get the revolution slider to work on IE9 or 10 or 11. It works perfectly fine in Chrome though. In IE, the slider loads and shows a little loading circle, but nothing comes after that. Can you please let send any new updated slider files with possible fixes? Have a look at www.nyeleti.co.za. Thanks.

Hi dear,

Thanks for contact us. In today I will update the slider new version please give us a little time.

Regards.

I see you added a sticky nav in the latest version. How do I disable it?

EDIT. Nevermind, Fixed it :)

That’s great :)

Hi, Its a great theme but I have an issue. I installed it and all looks well but non of the theme options do work. I click on them and the options do not load. Any sub-menu of theme options does not load for me. Any idea what this could be? I did ensure all right permissions are set but I do not get these theme options to load. I want to import the sample data but if I click on import in theme options than it only reloads.

Any help would be appreciated.

Best wishes, Thomas

Hello,

This is HTML version forum, did u asked for WordPress version? If yes please use here : http://themeforest.net/item/jollyany-corporate-multi-purpose-wordpress-theme/8519120/comments

Hi, i need the onepage gridtile.png in home11 how can i add this?

Hello my friend,

I check home 11 http://jollythemes.com/html/jollyany/home11.html i didn’t get any source code for gridtile.png can u give me more example or any screenshot which section you want :S

In this image can find an explanation. http://identificate.mx/image.jpg but i found the solution when i tried to explain.

this is the code

Thankyou.

Hello Alex identificate.mx/image.jpg not work for me :S

Hello

Have a question regarding the slider, how can I set the slider to NOT pause/stop on hover?

Thanks

@Flashdesigner-81,

You can set in revolution slider settings. Also you can get help through documentation. Revolution slider settings are also included with the theme package.

Hey, really good theme and I bought immediately :) I have a query, what is div classes for class=”col-lg-9 col-md-9 col-sm-9 col-xs-12” ? I was trying to keep my form controls in 2 columns and did not find documentation how we can set? Can you please help me how to set controls in div columns. Thanks for your help and cheers for the good theme.

Regards, Adi

I figured it out. I forgot about the bootstrap thing you are using. Now got the css how to implement in my case from bootstrap website :)

Hello

Thanks for purchase our work. Please forgive me for late answer. :( I have personal problems last 4 days. So, i am very very glad if you enjoy with our item.

Regards.

Guys – where is the drupal jollyness template gone?!

Now check bro :)

Hi there. I would buy this template but there is one detail that I was not clear. It could be that when you slide the page in the header next to the logo and menu remain visible also contact details and social icons, there is that option in the settings?

Sorry for late answer its weekend.

Yes its possible with Bootstrap skeleton codes. If you can’t i will do it for you.

Regards.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey