Discussion on Centum - Responsive HTML Template

Discussion on Centum - Responsive HTML Template

Cart 3,930 sales
Well Documented

Vasterad does not currently provide support for this item.

723 comments found.

hi,i want to purchase this theme but this website has ‘http406 error’ abut ‘about us’ page!!

please check this page and clear your error!!

Thanks, it’s working now.

Hi Vasterad,

I have a problem with tab-nav. When It have a second line, this line move all the time you choose one of the first line links. I see that in “sensation” theme it works as expected. May I use some js from this last template?

Thanks in advance!

Best regards

Hi Vasterad,

May you send me the tabs code from Sensation? :)

Thanks a lot!

Best regards,

Ok but please send me an email

I sent you a private message. Thanks!

My webhost will only allow the from e-mail on the contact form to be from one they host. How can I change that on your contact form code?

Thanks, Erick

Well, I don’t have idea in this case what to do.

Hi, i just purchased your theme and was wondering if there is a way to start the portfolio filtered? As in not seeing ‘ALL’ items and set the starting order to ‘INTERIOR DESIGN’ for example… i tried moving the class=”selected” but it will still start with ‘ALL’

Hi, unfortunately it’s not possible.

actually i just found a solution, add this to isotope.js:

$(function() { var filterFromQuerystring = ‘interior-design’; // getParameterByName(‘filter’); $(‘a[data-option-value=”.’ + filterFromQuerystring + ’”]’).click(); });

Well, thanks for the tip! :)

I am having issues with the icons and social-network logos…. They seems to be sometimes there and sometimes not.

I am trying to figure out where these are, whether they are images? How do these work?

Jeff

Could you clarify your question? Link to your site will be helpful however it’s probably issue on your side. :)

Love this theme! Great job! Made this website with it: http://yonkersautocenter.com/

Thanks! I meant I love this “template.” If you make a WordPress theme out of it I’d be interested in trying it.

Great :)

Just purchased. I looked at “Builder” and “Inceptio” but thought your template had some better design where I needed it. Great work!! I’ll definitely ask questions once I build out my site a little. Cheers! ~Owen

Thanks. :)

Hi,

Just a message for a little error :
File : custom.js
Line : 862
if ($.isotope) {...}
by
if ($().isotope) {...}

Very good theme !

Paul

Thanks, I’ll take care about in next update.

Vasterad, Thank you for the Template. I would like to use the search feature in the template but when i input my google search it messes the whole template up. Please see the script they gave me below. Any way to implement this in your template?

<script> (function() { var cx = ‘011122151086271395098:v9gr6gu2e7a’; var gcse = document.createElement(‘script’); gcse.type = ‘text/javascript’; gcse.async = true; gcse.src = (document.location.protocol == ‘https:’ ? ‘https:’ : ‘http:’) + ’//www.google.com/cse/cse.js?cx=’ + cx; var s = document.getElementsByTagName(‘script’)[0]; s.parentNode.insertBefore(gcse, s); })(); </script> <gcse:search></gcse:search>

Well, my templates are developed for WordPress so that’s why there’s search form, however you can easily use any search script from CodeCanyon and ask author for help in implementation. :)

Alright thank you!

Sure thing. :)

hi – i bought youre template – its wonderful.

when i hover over the menu bar, the blue highlight extends down beyond the black. how do i fix this so the blue doesnt extend beyond the black (on the top menu)? at http://goo.gl/DBDsN

thanks again

It’s because you’ve too big text in menu.

Hello, I would like to know how do I hide the navigation buttons on the home slide, appear only when you mouse over.

Not really possible without customizations, sorry.

there is already a solution?

Customizations are above support, sorry.

Hi Vasterad.

I’ve screwed up the template so it’s totally broken in all versions of IE. I’m comparing my altered files with your original download and I can’t figure out how I screwed up.

Can you help in any way?

Good to know. I just checked it in IE8 on my wife’s work computer and I still see the same problem. I might just start from scratch.

Ok, let me know.

Me again – got it narrowed down to a possible php issue. Still sorting it out but thanks for your time.

Quick question on how to customize the accordion in custom.js … if I wanted to open on the third accordion segment, how would I modify your code?

(function() {

        var $container = $('.acc-container'),
            $trigger   = $('.acc-trigger');

        $container.hide();
        $trigger.first().addClass('active').next().show();

        var fullWidth = $container.outerWidth(true);
        $trigger.css('width', fullWidth);
        $container.css('width', fullWidth);

        $trigger.on('click', function(e) {
            if( $(this).next().is(':hidden') ) {
                $trigger.removeClass('active').next().slideUp(300);
                $(this).toggleClass('active').next().slideDown(300);
            }
            e.preventDefault();
        });

        // Resize
        $(window).on('resize', function() {
            fullWidth = $container.outerWidth(true)
            $trigger.css('width', $trigger.parent().width() );
            $container.css('width', $container.parent().width() );
        });

    })();
I tried modifying this: $trigger.first().addClass('active').next().show(); to this: $trigger.first(2).addClass('active').next().show(); but then none of the accordion segments worked.

Any tips?

Here’s accordion code for you:

/*----------------------------------------------------*/
/*    Accordion
/*----------------------------------------------------*/
    (function() {

        var $container = $('.acc-container'),
            $trigger   = $('.acc-trigger');

        $container.hide();

        $trigger.on('click', function(e) {
            if( $(this).next().is(':hidden') ) {
                $trigger.removeClass('active').next().slideUp(300);
                $(this).toggleClass('active').next().slideDown(300);
            }
            e.preventDefault();
        });

        // Resize
        $(window).on('resize', function() {
            fullWidth = $container.outerWidth(true)
            $trigger.css('width', $trigger.parent().width() );
            $container.css('width', $container.parent().width() );
        });

    })();

Thanks so much!

Sure thing.

Just purchased and love this theme. I am used to prettyPhoto so I am grinding thru FancyBox for the first time. Using the portfolio_3.html page as a base I am setting up multiple galleries on this one page. These go to individual galleries with multiple images from their one respective visible thumbnail (using style=”display:none” – works fine).

My problem is the use of “rel” so that one gallery doesn’t pull images from another gallery. I’ve tried putting each gallery in their own folder – no go. I can’t use another rel attribute such as rel=”image-gallery1”, rel =”image-gallery2”, etc. as it just locks up FancyBox.

What am I missing? Do I need to add FancyBox code such as $(”.fancybox”).fancybox(); in your custom.js?

So you need to add an extra code for each “gallery rel” in custom.js:

    $('[rel=image-gallery-1]').fancybox({
        nextEffect  : 'fade',
        prevEffect  : 'fade',
        helpers     : {
            title   : {
                type : 'inside'
            },
            buttons  : {},
            media    : {}
        }
    });

Tested and it works great. No overlap issues now with rel attributes between any galleries on a single page or to other pages within the site. Thanks for the quick code fix.

Sure thing. :)

hi, i’ve put all the twitter tokens in the twitter.php file and my twitter name in the script, but nothing happens

can you please help me with this? http://tinyurl.com/cwox8bo

Still nothing.

thanks it is working now! but the contact form doesn’t work when i use a .nu e-mail adress, is there a fix for this?

Well, I’ve no idea right now why… :(

Hi again,

I have a bit of a dufus question. On this page: http://www.azomite.com/products/single_bag.html

The thin line under each image. What command creates that? It’s not the H5. Trying to align it underneath the dropdown on the far left photo.

No hurries, just curious in case I need to do it anywhere else.

Thanks again. We love this theme so much! :)

Everything is in CSS, please run Fire Bug or similar tool in browser you use and you’ll save much time because of asking about little things. :D

I did and couldn’t figure it out. So I asked you :P

style.css 503 line, .item-description h5 ;)

Does Centum include any type of PrettyPhoto or similar scripting? I would like a gallery page that if a thumbnail image is clicked it would open the larger image and have a slideshow, such as PrettyPhoto can do.

Hi, Centum uses http://fancyapps.com/fancybox/ (imho better than prettyphoto) ;)

Sorry I overlooked that on your info page. This theme looks ideal for my next project., plus I appreciate your very prompt reply.

I’ll buy it. Thanx.

Thanks. :)

I’m very pleased with the Template except the Contact.html page. I changed the contact.php like your documentation page said but it still gives me an error when i press the send message “Sorry unexpected error, Please try again later”. Please help.

Does your hosting provide PHP? If so it must be related with SMTP auth and you need to contact your hosting provider.

Great template! I’d really like to add captcha to the contact form and read somewhere on the comments section that you don’t offer that option. I was wondering if you think this Ajax form would integrate nicely with your template, especially with the responsive feature?

Ajax Contact Form with attachments Author: gui-yem http://codecanyon.net/item/ajax-contact-form-with-attachments/3193426

Hi, there’s no problem with integrating any stuff. ;)

hi all,

main page slider is not work on android 4.0 how I can resolve this problem

regards

Sorry, I’m Android user and didn’t notice any issues.

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