This item is by an Elite Author
Vasterad
- Elite Author
- Sold between 50 000 and 100 000 dollars
- Exclusive Author
- Has been a member for 1-2 years
- Microlancer Beta Tester
- Bought between 100 and 499 items
- Referred between 100 and 199 users
- Poland
1,675
Purchases
Buyer Rating:
4.80 stars
4.80 average based on 142 ratings.
-
5 Star
11681%
-
4 Star
2316%
-
3 Star
32%
-
2 Star
00%
-
1 Star
00%
| Created | 15 August 12 |
| Last Update | 6 March 13 |
| Compatible Browsers | IE7, IE8, IE9, IE10, Firefox, Safari, Opera, Chrome |
| Documentation | Well Documented |
| High Resolution | No |
| Layout | Responsive |
| ThemeForest Files Included | Layered PSD, HTML Files, CSS Files, JS Files, PHP Files |
- ajax contact form
- business portfolio
- clean
- corporate website
- creative portfolio
- crisp
- elegant
- html
- icons
- minimal
- minimalist design
- modern
- professional
- responsive
- style switcher
© All Rights Reserved Vasterad -
Contact Envato Support


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!
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 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
Could you please provide a link to your site?
Hi Vasterad,
You can see the behaviour at http://alaguirre.com/centum/shortcodes.html . I’m using Chrome and Firefox.
Thanks!
Oh, then sorry but it needs some custom CSS adjustments and it’s above support.
But it works fine at “sensation” theme without any customization. May you just give me some idea what could be? Thanks in advance!
Have you bought both themes or Centum only? If so you can copy tabs from Sensation if not I’ll send you part of code with tabs from Sensation.
Only Centum, but using chrome inspection code I add the html and seems to work without problem.
Ok, so let me know if there’s anything you need because I’m not sure if you did it by yourself and problem’s solved or you need an assist.
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!
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.
hello. I am very happy with this theme and have used it here what is soul? i wanted to ask is there any way to update my navigation bar in on every page without cutting and pasting? thanks. ian
It’s possible with only PHP Including, but I’m not an expert and couldn’t help you. Here’s guide http://www.apaddedcell.com/how-automatically-include-your-header-navigation-and-footer-every-page
Thanks. You are awesome
hi, first of all, nice theme ! and sorry my english. Now the question, i need to use 2 contact form, so i copy contact.php into reservation.php I changeed some text in reservation.php but it works like contact.php because the function in custom.js calls contact.php:
// PHP file that processes the data and send mail
url: “contact.php”,
There is any way to have the 2 contact form working separately ?
hope you understand me
thanks in advance !
Pedro
Hi, sorry but current script doesn’t support that feature by default and need to be modified.
ok, thanks !
Hi,
So far great theme. One question though, how can I collapse the accordion so that nothing shows active unless clicked?
Hi, remove this part of code from custom.js in Accordion section:
$container.hide(); $trigger.first().addClass('active').next().show();thank you!!!
Sorry, I did just that and they all show as open by default, I want them all closed. What I want it to require a user to click on them to show. By default, the first one shows/
Woops, don’t delete
$container.hide();New problem. That does close them, but I have two 8 column sections side by side. Each with a list of accordions. Doing what you suggest, on page load makes them go full width until I open firebug, then they go back in their container. Any idea what’s going on there?
Also, I would like to be able to click to close again if it is opened (without clicking on a different tab).
Here is correct accordion code
(function() { var $container = $('.acc-container'), $trigger = $('.acc-trigger'); $container.hide(); var fullWidth = $container.outerWidth(true); $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() ); }); })();Perfect on showing closed, now what do I add to make the active one once opened on click, close again on click?
Well, not really possible with this script.
Is there a problem with IE? Doesn’t show accordion closed? https://dl.dropboxusercontent.com/u/33383434/Test-Site/planning-permit-developing-services.html
nevermind. Just needed a refresh. Thank you!
Works for me.
P.S. great theme!
Thanks.
Okay, one more small problem with the Flexslider Script. Did you know that the “fade” animation will not work? Only slide will show as an animation. I really do not like this movement. Is there any chance something is also broken here…
Did you even change animation type in flexslider.js?
Yes… that was the first thing I did. I also had to correct an error in the twitter feed to get it to work, but cannot get the fade animation working.
Question… would you change the script to enable the option to click close an accordion item if I paid extra? If so, how much? I really like your accordion, but need this “extra” feature please!
Hi, sorry but I don’t make customizations, even paid but I’ll take a look how to do it tomorrow if you could wait.
That will help. Thank you.
Hi, here’s modified and tested script for you:
(function() { var $container = $('.acc-container'), $trigger = $('.acc-trigger'); $container.hide(); var fullWidth = $container.outerWidth(true); $trigger.on('click', function(e) { if( $(this).next().is(':hidden') ) { $trigger.removeClass('active').next().slideUp(300); $(this).toggleClass('active').next().slideDown(300); } else { $trigger.removeClass('active').next().slideUp(300); } e.preventDefault(); }); // Resize $(window).on('resize', function() { fullWidth = $container.outerWidth(true) $trigger.css('width', $trigger.parent().width() ); $container.css('width', $container.parent().width() ); }); })();Thank you for template. One questions:
1. I’m beginner, so be patient with some stupidity, maybe, but when I click on Search but seems it doesnt show any results. Could you tell me How can I turn search field to search desired words inside site content?
It’s HTML template and search function doesn’t work without an extra script.
could you advice me where I can get this function to make search field work? Thank you much!
You cna use e.g. plugin from cudecanyon or integrate google search. I cannot give guide because I don’t have any experience with google search, but I’m sure that if you buy plugin on CodeCanyon author will helps you.
Hi Vasterad.
We have really enjoyed using the template, thanks.
One problem we are encountering, and I wondered if others had the same problem, is we are having real trouble with SEO. The client has a very unique business, and it should easily appear on Google after doing all the usual tricks but nothing appears whatsoever, for any search terms (except the company name).
Is there something weird about the template?
Many thanks
Template is coded with good SEO practices and everything depends on your job how site is “SEO ready”.
THIS IS ONE OF THE CLEANEST MOST EASIEST TEMPLATES TO USE…. THANKS.
Thanks.
Is it possible to modify the Contact Form script in custom.js so that the url: “contact.php”, statement can pick an alternate contact.php (contact2.php)?
I want to have a separate contact2.html page with it’s own contact2.php. Any advice welcome?
Great template!
Unfortunately not really. :/
I was unable to install the theme in wordpress. I got the following error
Unpacking the package…
Installing the theme…
The package could not be installed. The theme is missing the style.css stylesheet.
Theme install failed.
I was unabale to install the theme in wordpress, please help.
Got this error
Unpacking the package…
Installing the theme…
The package could not be installed. The theme is missing the style.css stylesheet.
Theme install failed.
This is HTML template and cannot be used as WordPress theme. Here’s WordPress release http://themeforest.net/item/centum-responsive-wordpress-theme/3216603?ref=Vasterad