8337 comments found.
Hi,
I see that under Laborator – Theme Options – Typography we can choose a general Primary Font.
Is there a way in a text box to put an html tag (or specify something in custom css) that will take this exact font but make it slightly smaller or bigger for some part of the text ?
Thanks in advance Pietro
Hello, I added a blog-post-element via visual composer on my News-page (http://soniagansterer.at/html/wordpresstest/?page_id=4394) But I cand find how to customize the hover color of the blog-post-thumbnails. I added my custom-style in theme options, but it seems like it doesn´t work for this blog-post-element. Could you please help me out? Thanks, Karo.
Of course, I did this already. And for my portfolio-hover and most of my links it works. But my blog-post-hover is still your theme-color. Also the hover of the socialmedia buttons in the footer and the hover of the four-square-button to go to portfolio-archive (the one between next+prev-buttons). I really can´t figure out why. I´m using the latest version, also updated all plugins and visual composer…
HI clefei,
Can you please add the code below to Custom CSS
.wpb_wrapper .lab-blog-posts .blog-post-entry .blog-post-image a .hover-display {
background-color: rgba(209,209,209,.8) !important;
}
.simple-social-icons a:after {
background: none !Important;
}
- You can change background-color: rgba(209,209,209,.8) !important; to the color you want.
Kind Regards,
—Ylli
Thanks a lot, this worked perfect! Is it also possible to delete the sign on the blog-post-hover? So that only the chosen color appears and nothing else. And is there also a code for the “back to portfolio archive” button (between next/prev buttons)? This one´s still your themecolor.
Hi clefei,
To remove that icon, can you please add the code below to Custom CSS
.wpb_wrapper .lab-blog-posts .blog-post-entry .blog-post-image a:hover .hover-display i {
display: none !important;
}
and for the other question
.single-portfolio-holder .portfolio-navigation a:hover i {
color: red !important;
}
*then change red to your preferred color 
Kind Regards,
—Ylli
You are doing great support, thanks a lot! Everything worked fine!
Hello, Will it be possible to change the portfolio-category-order in a new update? Would be really helpful! If I didn´t miss anything it´s automatically in alphabetical order at the moment? Thanks, Karo.
I guess you won´t need it, but in case, my url: http://soniagansterer.at/html/wordpresstest/
I´m not able to order the categories with this plugin (i´m talking about the categorie filter on the right top of the portfolio overview) Maybe I´m just overseeing anything. Looks like I´d have to buy the pro-version of this plugin to manage that. Would be great if there´d be another solution. I think many customers would like to order their portfolio categories by relevance instead of alphabetical.
Hi clefei,
Hmmm if that plugin don’t work, can you please give this plugin a try:
Category Order and Taxonomy Terms Order
Hope that this plugin can do the trick 
Kind Regards,
—Ylli
Thanks, I´ll try!
Ok, now I have a panel to order my categories, but it doesn´t change anything. Although I did all settings like it´s told in the plugin-description. Strange.
Hi clefei,
Hmmm this is very strange, can you please send us an email with your WP and (FTP credentials) and Arlind will check if he can do anything about it.
To send us email use this link and please write us your request again, because we receive a lot of emails on daily basis and we unfortunately can’t remember all customers requests.
P.S: Please note that we usually do not respond to emails that request support, because here is our primary support forum. We use contact form just for sending sensitive information.
Kind Regards,
—Ylli
OK, thanks. I´ll do this.
Hi, new bunch of questions :
1 – I just tried my website on an ipad, and i was really disaponted to see that in portrait mode it looks more like the iphone site than the 800×1080 site. Can i tweak that ? Because so many people use ipads and i don’t want to show them the mobile version.
2- In landscape mode on ipad, webside is like i want it to be except the border that sticks and bounce during the scroll. If it’s not easy to fix, can we desactivate it on tablet’like screen sizes ?
3- On small screens “like” button is bugged and display itself on a wrong spot (on grid)
actualy, the theme is so simple that i would like maybe even desactivate responsive under the 1080×800 size
www.mono.archi if you need
Hi amorizot,
1— Can you please add the code below to Custom CSS
@media screen and (max-width: 767px) {
#isotope-container .isotope-item.w4, .portfolio-holder .isotope-item.w4 {
width: 50% !important;
}
}
@media screen and (max-width: 480px) {
#isotope-container .isotope-item.w4, .portfolio-holder .isotope-item.w4 {
width: 100% !important;
}
}
If that don’t work, then just send us the exact URL of that page that you are talking, this applies to your second and third question also.
Kind Regards,
—Ylli
Hi, comming back from holidays, i tried your custom CSS but it dosen’t seems to work.
Where I’m I supposed to paste it ? In the main custom CSS, in the page custom CSS or in the responsive custom CSS ?
Ok i figured out : I typed this :
@media screen and (max-width: 769px) { #isotope-container .isotope-item.w4, .portfolio-holder .isotope-item.w4 { width: 33% !important; } }
@media screen and (max-width: 480px) { #isotope-container .isotope-item.w4, .portfolio-holder .isotope-item.w4 { width: 50% !important; } }
It’s quiet what i wanted it to be 
For 2, car I have a CSS to stop the border under some resolution ?
For 3, i desactivated the “like” button on tiles, too buggy (for me) on responsive for now.
Done, Thanks 
Hi amorizot,
1— Can you please tell what do you want to change there? Your website is fine on tablet http://drops.laborator.co/15Uqs
2— Just add the code below to Custom CSS
@media screen and (max-width: 1024px) {
.page-border {
display: none !important;
}
}
3— Can you please add the code below to Custom CSS
.portfolio-holder .thumb .hover-state.position-center .likes {
left: 50% !important;
top: 25% !important;
}
Kind Regards,
—Ylli
1 – Yes, thanks to your first advices, i manage to reduce portfolio size on portrait tablet (3 col.) and phone (2 col.) like I wanted to do, on home page.
The portfolio page did not change like hompage do, i don’t know why.
2 – It was not working on landscape ipad, but changing the 1024 by 1200 did work, so thank you !!!
3 – By uderstanding the first custom CSS you gave me, I actually wrote :
@media screen and (max-width: 1200px) { .portfolio-holder .thumb .hover-state.position-center .likes { display: none !important; } }
So I keep the like button on desktop but not on mobile where it’s anyway harder to interact with.
4 – Is there a code to reduce ALL text police on mobiles phones (especially those inside tiles ?)
5 – Said in 1- how do I apply same ratio reduction to portfolio’s tiles than to hom’s tiles ?
Thanks a LOT for all your help, I’m really amazed by you wonderfull support.
Hi amorizot,
1. Can you please add the code below to Custom CSS
@media screen and (max-width: 768px) {
#isotope-container .isotope-item.w3, .portfolio-holder .isotope-item.w3 {
width: 33% !important;
}
}
@media screen and (max-width: 480px) {
#isotope-container .isotope-item.w3, .portfolio-holder .isotope-item.w3 {
width: 100% !important;
}
}
4. Can you please add the code below to Custom CSS
@media screen and (max-width: 768px) {
.portfolio-holder .thumb .hover-state .info h3 {
font-size: 18px !important;
}
}
Kind Regards,
—Ylli
Wow works perfectly, thanks !
4 – What line shoult I add to reduce category text as well in the portfolio grid ?
Never Mind, by using the search field I found it :
@media screen and (max-width: 768px) { .portfolio-holder .thumb .hover-state .info h3 {font-size: 15px !important;} .portfolio-holder .thumb .hover-state .info p {font-size: 12px !important;} .portfolio-holder .thumb .hover-state.hover-style-white p a {font-size: 12px !important;} }
Looks better on phone with 50% reduced grid 
Hi guys, first of all thank you so much for making such a beautiful theme. I installed it and everything worked great, I have some questions, though.
Maybe it’s a stupid question but how can I get the portfolio page to be the main page? without linking it with /portfolio? right now the blog page appears on the place where I want the portfolio to be. But I don’t want a blog at all, just a portfolio. Basically exactly as shown in the examples “agency” and “freelancer”. but it seems that wordpress gives me no option to change that..?
I would be very grateful for help:)
thank you so much, now it works !!:)
Hi, it’s possible to change the color of the new news mouseover with the animated eye? http://i.imgur.com/40pVw66.png
no, i’m saying the background color. i cannot change it
Hi, first I must say that I really like the theme! Very clean and easy to use.
I have a question about the ‘My account’ page I’m making. Next to my login form I would like a registration form where users can create an account. How can I do this?
When I go to the checkout page I see a ‘Billing Details’ form. Can I include that form into another page?
Thanks!
Hi pstultiens,
Thank you very much for your kind words. We are so glad that customers like Kalium 
1— Just go to WP Dashboard > WooCoomerce > Settings > Accounts > Registration Options and tick “Enable registration on the “My Account” page” option 
2— I don’t think that this is possible.
Kind Regards,
—Ylli
Hello, On my blog page with Masonry blog style , I do not have the Show more button ? Furthermore , I wish on this same page have hovers on the images other than the Kali style. I can not change the color selection on each image . Thank you for your help !! Vanessa
Hi Vanessa,
1— Just go to WP Dashboard > Laborator > Theme Options > Blog Settings > Pagination and choose Endless Scroll.
2— You can’t change hover color for the each Blog Post like on the Portfolio item.
Kind Regards,
—Ylli
Hello, On my blog page with Masonry blog style , I do not have the Show more button ? Furthermore , I wish on this same page have hovers on the images other than the Kali style. I can not change the color selection on each image . Thank you for your help !! Vanessa
Hello, The problem is that I’m already Endless Scroll blog on the choice of setting! I do not understand !
Hi There! Amazing theme, I’m having a problem with the responsive images, try to stretch the web window at this page: http://domesticstreamers.com/press you can see how everything is responsive but the images… How can I fix it?
Thanks!!
I will! A last thing, I don’t know what I have to do to make appear the menu in the mobile screens: www.domesticstreamers.com How can I fix that?
Hi Ylli, When I keep the mobile screen vertical the menu button disappears: http://domesticstreamers.com/wp-content/uploads/Screenshot_2015-08-02-13-17-21.png
Thanks! That worked well!
Hi Art, Ylli and Arlind
Maybe this is a bit of a special question you wouldn’t answer because it has to do with wordpress in common – but after hours of trial and error, reading tons of discussions of other wordpress users facing the same problem, cleaning my cache, etc., I have the impression that it could have something to do with the theme “Kalium” itself.
Long story short: I cannot password protect my blog. I’ve tried everything. Set visibility to “protected”, set a password – it doesn’t work. The page won’t ask for a password. I even tried to change the time wordpress cleans a password cookie – nothing helps.
Do you have the impression that it could somehow be caused by your theme? If you think you can help, I’ll send my login data via email. But if this is out of your support range because it is too wordpress specific, I’ll accept that of course.
Cheers, Andi
Hi Andi
Firstly thank you for your kindness. Clients like you I don’t hesitate to help even with uncommon requests.
However you are right and it seems that this issue is “Kalium related” because post password should appear. Recently we have added the “password protect” functionality to portfolio items, and now I will add this feature to posts and pages as well.
Please download these files:
http://drops.laborator.co/12wA6+ http://drops.laborator.co/1k9k1+Move+replace kalium.css to kalium/assets/css/ folder
Move+replace page.php to kalium/ folder
it should solve your issue. Also make sure you have the latest version of Kalium installed on your host.
Cheers
Wow, that sounds nice! It seems that the two files you provide are in fact only one – the page.php
Looking forward to get the kalium.css as well 
Thank you, Andi
Hi Arlind – the second link leads to the same file as the first link…
Hi Andi
Sorry about the confusion, I am not sure why these files are messed, so here is the first file to replace in assets/css/ folder:
http://drops.laborator.co/1gdGKBest regards
I am trying to get the portfolio page to show up but I can’t seem to understand what to do. In the documentation there weren’t instructions on how to create a page and then link it to all of the portfolio items I have uploaded. Do I need to make a new page called “portfolio” ? If so, is there a template that I click using the Visual Composer? Or do I just need to click some thing to make a portfolio page generate?
I looked through comments on the theme to see if there was a solution but I couldn’t find a one.
Thank you for your help. I really love this theme, it is saving me ages of coding.
-Chanel
Hi Chanel
Firstly thank you so much for your kind words and brilliant review!
To create a portfolio page that lists all portfolio items it is easy and there are 2 ways:
1. First and more easy: simply add www.yoursite.com/portfolio and all portfolio items will show
2. Second, more complex but offers you great control over what portfolio items you want to show:
2a. To create this type of page, go to Pages and click Add New 2b. Then choose Portfolio Page template 2c. Portfolio Options box will appear so you can configure how this portfolio page will show, number of columns, number of items, layout and more options, here is the screenshot how it looks:
http://drops.laborator.co/12sOtI hope it will help you, but don’t worry even if you can’t we can assist you on it.
Cheers and have a great weekend
Hi there! Beautifully designed theme, definitely considering to purchase it. I was wondering, however, how much freedom would I have in terms of code customization? Is it built in a similar manner that squarespace is, allowing only css code injection, or would I have a full/almost full control over html and css files? Please, let me know.
Thank you so much, Alisa.
Hi Alisa,
Kalium has a lot of options on it’s theme options, but we don’t allow to customize PHP files, (you can go ahead if you know PHP, but we don’t recommend that to you). Please be aware as by doing customization if something happens like miss-editing files the responsibility is yours and we wont support you on finding the problem.
You can change it’s look and feel on the Custom CSS & Theme Options area 
Kind Regards,
—Ylli
Hi, I have purchased and downloaded Kalium, which looks wonderful. Trying to install the theme onto my wordpress but its not installing, I am a total beginner at this
I may be doing something silly but I am pretty sure I’ve done all I am supposed to.
Appearance, Themes, Add new, Upload Theme, Choose File, File chosen is the Kalium.zip file, Install Now, then a 2 min wait and I get a page saying… are you sure you want to do this ? Please try again.
I try again and the same thing happens.
Please could you tell me what I ned to do to install the theme.
Many Thanks, Ben
Hi Ben,
It looks that you have low PHP limits or/and a very old version of PHP,
To learn more about this we have made an article,
When you fix this issue, then you can follow the procedure of installing Kalium from our Documentationsite
Kind Regards,
—Ylli
Hello,
i have some problems with your theme because i only get errors with some links. Here is a example of one source for “maps.js”
ERROR (x) GET “http://example-site.dev/C:examplewwwroothwgv1_0wwwwp-contentthemeskaliuminclibvclab_google_map/maps.js?ver=4.2.3”
should be “http://example-site.dev/wp-content/themes/kalium/inc/lib/vc/lab_google_map/maps.js?ver=4.2.3”
In using is a IIS Server System on a Windows Machine.
I hope you can help me.
greetings HDGras
Hi HDGras
I think this code is not executing well in your server that is why that error happens:
$lab_vc_element_path = dirname( __FILE__ ) . '/'; $lab_vc_element_url = site_url(str_replace(ABSPATH, '', $lab_vc_element_path));
So for this to fix please download this file:
http://drops.laborator.co/1gcpk+And replace it in this directory:
wp-content/themes/kalium/inc/lib/vc/lab_google_map/
I hope this will work for you.
Hello Arlind,
thanks for your help, this works for maps now but not for the other sources like Demo Content Part. The best way is to get a full fix for IIS Server. Maybe a Kalium Version only for the IIS Server User.
thanks.
Hello! One more question – this is a bit odd, but on the standard menu the colour of text inverts when you hover over it. Is there a way to make it so that specifically for the ‘white/light’ menu option this does not happen (the text stays white).
Thanks!
Sorry, don’t worry about this one – I just had some old custom css I needed to get rid of.
Hi there! I have made a page with a full-page revolution slider. There is a white space/margin beneath the slider when you scroll down. Is there a way I can remove this, so the bottom of the slider is the bottom of the page?
Thanks, Alastair
Hi Alastair
Do you mean you want to make the slider stick to the end of footer like in our demo:
http://demo.kaliumtheme.com/architecture/Please check force full width option in slider settings, it should work like in our demo.
Hello - I think I have the correct slider settings. The slider actually appears correctly on Safari and Chrome for iOS. When I view the page on desktop Chrome, though, there is a scrollbar and an extra inch of white space at the bottom of the page. It seems like this issue is isolated to desktop Chrome.
It can be seen at the link here: http://alastairclark.com.au/home/.
So that is a bit strange – not sure what the problem might be!
Thanks, Al
An update – it actually isn’t browser-specific, the white space DOES appear on all browsers. It seems to be to do with responsive size – it only happens at ‘desktop’ sizes. If I rescale my browser window it disappears – specifically at the point where the menu turns into a menu-bar icon.
Thanks! Al
Hi Al,
Can you please send us your WP (and FTP in case we need them) credentials on email, and we will try to check what the problem is.
To send us email use this link and please write us your request again, because we receive a lot of emails on daily basis and we unfortunately can’t remember all customers requests.
P.S: Please note that we usually do not respond to emails that request support, because here is our primary support forum. We use contact form just for sending sensitive information.
Kind Regards,
—Ylli
Have done that now!
Thanks.
Hello, updating the theme, following the tutorial video at the end, I get an error and can not display the site … What can I be doing wrong? ” Fatal error: Call to undefined function vc_map_get_attributes() in /home/pompom/public_html/grafica/wp-content/themes/kalium/vc_templates/vc_row.php on line 21 “
It is urgent. Thank You!
Hi!
First off, I love this theme, you have saved me a month worth of coding, and allowed me the flexibility to do what I need to do as a designer, without getting too caught up in myself.
Only issue I have run into so far is figuring out how to get my Typekit fonts to work. I pasted in the code after enabling the TypekitFonts in Theme Options, but I am not sure what I do next within the theme options to get my custom font to load. How do I proceed with this?
Hi danieloliverio,
Thank you for your kind words, we are very glad customers like Kalium so much 
As for the question, can you please follow this procedure.
Firstly create the font in typekit site:
1 – http://d.pr/i/12zNo 2 – http://d.pr/i/192Ig 3 – http://d.pr/i/1f3hX
Just make sure to add body or another selector to “Selectors” box on typekit.
http://d.pr/i/1dDAF Then in Admin Panel do the following in theme options:Here is how I have implemented the font in theme options (Typography tab): http://d.pr/i/xMa0
Just make sure to add body or another selector to “Selectors” box on typekit.
http://d.pr/i/1dDAF See the result: http://d.pr/i/1aiUIWe use Embed Code code, but in the next version we will support Typekit ID too.
Kind Regards,
—Ylli
Hello,
I have couple problems I’m not able to solve.
1. When I try to save my own auto type text it doesn’t. The content displayed is the default one:Hi there! This is Kalium Theme;Developed by Laborator;Do you like it?
I wanted to apply another a text similar to another one you provide in your demos which is: Clear thinking at the wrong moment can stifle imagination;inspiration;talent;creativity
2. On mobile, on a portfolio page template, the Call to action “Launch website is sticked to the first picture of the project. How can I add a vertical spacing to let the image breath?
3. On mobile (like I already mentioned in a previous comment) the slider image comparison does not work. However it works on larger sizes.
More generally I find the mobile version much more slower than the web one.
Could you help on these points?
Thank you.
Alban
Hi Alban
1. We have fixed Auto-Type element in the latest update, so could you please update the theme to v1.4.1 and see if the Auto-Type will work for you?
2. Can you please give me the URL of this page, I need to see it live and give you the proper fix for that (also that fix will be included in the next update).
3. We are aware of this, so we are going to change the slider in the next update.
I hope in your understanding.
Hi,
Thank you for your reply. I fixed the first two problems since then but I still have have the problem with the slider. Will you be able to provide me a custom solution before the next update? This point is very important for me to showcase my expertise. I used a similar plugin (twenty twenty) with the previous version of my website and it worked perfectly on mobile. To be honest I’m not satisfy for now by the experience on mobile. I’ve done couple of investigations thanks to https://gtmetrix.com. I’ve succeeded to improve couple of stuff but it still very slow on mobile. I’ll be willing to downgrade a bit the experience (remove some js effects) on mobile just to make the experience fluid. Please take a look to my website (albancarmet.com) and you could see what’s going on. The nav bar on mobile lags a lot as well. Like you could notice it, performances on desktop are pretty good. I contacted my web host and they have confirmed me that there is no problem on their side. FYI I got exactly the same amount of visual elements in my previous version of my website and it was fluid. From my point of view the problem comes from the image scaling and the javascript optimization on mobile. Is there a way to improve that ?
Last thing but less important I was wondering if it was possible to replace an image logo by a CSS snippet in order to avoid the aliasing effect I got when my logo is switching from green to white. Here is what happen currently when I scroll: https://www.dropbox.com/s/11ij0wmxq0d2tyg/2015-07-29.png?dl=0Thank you for your help.
Alban
Hi Alban,
1— Hmm… Can you please install this plugin WP Super Cache it is the best to speed up your site, just make sure that you disable it when you are editing your site, because if it is enabled on that moment, you will not see the changes that you’ve made on your site until you refresh the page 3-4 times.
2— I saw on your other ticked that you have solved your problem, thanks for sharing that information with us 
Kind Regards,
—Ylli
Ok thank for your help. I use another plugin to speed up my site but I didn’t know this one. I gonna tr it.
Regards,
Alban