8334 comments found.
I’ve managed to get it… almost. I can get the featured image full-width, however its not sitting behind the logo and hamburger menu. Its sitting about 50pixels below.
done. One thing for other purchasers is that if you have the wordpress top-bar showing and making changes, it adds a gap between the dropdown nav and featured image. Sign-out and view the page and it looks okay. 
Hi, I updated my theme but the navigation filter has gone wonky again.
I’m due to launch in just over a week and would really appreciate if this could be looked at. The update before last helped and was working fine, but latest update has went backwards in this area.
Still a great theme just a bit buggy.
So what happens is…
you click a portfolio tag and the page reloads (didn’t used to re-load) adding the filter to the url: ......com/?portfolio-category=app
You click another portfolio filter tag and it adds it to the same URL instead of updating: ......com/?portfolio-category=app#branding
Hope this helps to solve it from your end.
well… i don’t know whats happened but it seems to be working fine now after a night off… not sure why it didn’t work before? Maybe another setting is affecting it.
Hello, I’ve installed the Kalium theme and managed to get individual portfolio pages working, but I can’t seem to get the homepage to look the same as the Main theme despite installing the Main theme demo content. For my home page I’m looking to have the full bleed video at the top with welcome titles, then the ‘latest works’ title and copy with navigation menu running alongside. Underneath sits the three column grouping of portfolio projects – basically exactly like the main theme demo. I’m going round in circles randomly trying different templates, but getting nowhere. I don’t know if the templates are from Visual Composer or Laborator. My site is thisisjt.co.uk Thanks, James
Hi, I have tried installing the demo content, but get this error message [ErrType: xml-wp-content] Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request. [ErrType: revslider] no custom animations found, if slider uses custom animations, the provided export may be broken… dynamic styles imported!
These are the PHP directives check I get when I install:
Directive Priority Least Suggested Value Current Value DOMDocument High Supported Supported memory_limit High 64M 256M max_execution_time Medium 180 30 max_input_time Medium 60 -1
The last two were in red, but I’ve no idea what they mean or how to rectify them
Thanks
Hi there,
Thanks for reaching out! Please read out the following might be helpful:
http://documentation.laborator.co/kb/general/recommended-php-configuration-limits/ http://documentation.laborator.co/kb/kalium/getting-started-kalium/demo-content-import/Please let us know, how it goes.
Best,
Imran
Hi,
I upgraded my hosting account to increase my php settings and that seems to have done the trick and can now use the portfolio tiling for my homepage. However, there was an error on the install of the demo and the revolution slider doesn’t seem to have uploaded, so I can’t add videos to the top of my homepage
You can see a screenshot of the error here: https://drive.google.com/file/d/0B0dZhzkpONyOX1BHOW1GWG5JM3c/view?usp=sharingThanks
Hi, Despite finally getting all of my php setting correct the revolution slider still refuses to upload and I get the following error [ErrType: revslider]. So at the top of my home page I get no demo content, just the ‘no slides found, please add some slides’ message. Any suggestions please? site is thisisjt.co.uk Thanks
Have tried again with connected through Ethernet instead of Wi-fi and only selected the revolution slider for install. That seems to have done the trick.
Hello, I’m using Kalium and have uploaded two videos to one portfolio post via Youtube links – however, they both autoplay despite deselecting the option in the portfolio gallery. I presume this is because youtube now have autoplay as standard, but can find no way to control this through my youtube settings. Do you have any way round this please? James
Hi there,
Have you uploaded the normal link without any extensions in the URL because sometimes it extends with a lot of other options and they may ignore the settings of the theme.
P.S: You have created some other tickets, in the future if you have any question, please don’t create a new ticket but just find a ticket that you have wrote to us earlier and just reply there with your new question, because in this way it’s easier for us to understand what you have done and what is left, also is would be easy for you to post in one thread 
Kind Regards,
Art
Hi guys, quick question about the videos you use in your main demo. If I purchase the theme – can I use them. If not – where can i buy them from?
Very neat and elegant work; But you seriously need to have more header options.
Hello! can your theme do something like this? -> http://launchkit.tommusdemos.wpengine.com/home-adventure/
Hi. I changed Theme Border thickness to 14 pixels. But every browser just show the new thickness from top and buttom, but not from left/right. How can i fix that. Thanks.
Hi,
I went through the comments here, but couldn’t solve a couple of things:
1- I would like to set up my portfolio page as my homepage, and to achieve that I read here that I need to create a new one in the visual composer. But it just does not yield the same original result, that readily comes with the theme. – there is masonry, but it lists items in a static row, leaving gaps between items. – as with almost anything i do in visual composer, i end up having additional margins around the portfolio. (I fear entering negative values for padding options and messing up the overall design.) (Until there is a solution, I will keep the original default portfolio, accessed from menu.)
2- In the meantime, I created a slider page for my homepage with Slider Revolution. It does not fit the page, goes below, needing you to scroll. How can it be fixed so it just fits? There is also a white margin underneath that I can’t get rid of.
3- How do I make sure that my site uses Latin-extended throughout? I am positive that my fonts support them, but the results are not correct. Do I have to add in something in the custom CSS?
4- How do I change the font size for body text throughout the site?
my site: bukilic.com
Thank you, Burak.
Hi Burak
1. If you want to have the same results as on Portfolio page, simply create new page assign the “Portfolio Page” template and then select items one by one in Custom Query. You can still use Visual Composer to add other elements and they will appear above the portfolio items.
2. It is only possible to fit the slider within window dimensions if you set “Absolute Header”
Then in “Row” edit settings check this box:
This should work for you.
3. To add the support for latin extended fonts, add this code in your functions.php (child theme):
add_filter( 'kalium_google_font_subset', create_function( '$subset', 'return "latin,latin-ext";' ) );
Make sure you have latest version of the theme, when you add this code, because we have added this feature in the last update.
4. Actually you can do this via Custom CSS, as there is no option in Typography for this. We are going to implement more font options in future versions of Kalium.
I hope this will help you.
Arlind, thank you for your reply.
3. Do I need to create a child theme? Are there specific instructions for this theme or should i check with wordpress?
4. What would the actual code be?
Thanks, Burak.
Hi Burak
3. It is preferred to use Kalium child theme, because you will not loose your customizations. In your download package you will find it kalium-child.zip file. It contains that functions.php file, which will not be replaced by the new version of the theme.
4. To change the overall font size apply this CSS:
body, body p {
font-size: 15px;
}
If font size is not applied, add !important after the value for example:
body, body p {
font-size: 15px !important;
}
This should work for you.
Hi Arlind, thank you for the answers. One last thing:
- How do you change the font size for the ‘Next item’ ‘Previous Item’ link titles on the Single Portfolio Pages? They are not affected by h1, h2, etc or body font size.
Thanks again.
Hi thanks for the great theme! Glad I bought it (this is my first time buying theme btw, yours is gorgeous!)
I have spent hours browsing through the comment section but I couldn’t find the answers to these questions: (hope you can help me, thanks in advance!)
1. There’s a ‘hole’ in my product’s list. You can’t select / click it. How do I remove it? Pic: http://i.imgur.com/3SmnRP6.png
2. I tried to make the “copyright 2016” font smaller, but always failed. How do I do this?
3. The product categories widget in the footer looked awful. How do I remove the white background? Pic for questions 2 & 3: http://i.imgur.com/fZf4BpD.png
4. How do I make the blog’s title smaller? Pic: http://i.imgur.com/8CokHRe.png
Btw currently this is what I wrote in my custom css: (blog.holder and main.footer copyright didn’t work)
body { } footer.main-footer .big-footer .section h1, footer.main-footer .big-footer .section h2, footer.main-footer .big-footer .section h3 { font-size: 17px !important; } .blog-holder .isotope-item .box-holder .post-info h2 a { font-size: 20px !important; } .main-footer .copyright p { font-size: 12px !important; line-height: 20px !important; }
Oops my bad, found the problem on question no. 1, please ignore it thanks!
Hi it’s peekmybook.com. Also question no 5: I inserted Layerslider on my homepage (which is my shop woocommerce page), and now the slider appears on every of my product’s pages. How do I show the slide only on my homepage? Can you help me with its custom css? Thanks!
Hi cil13,
2— Can you please add the code below to Custom CSS
.footer-links .copyright {
font-size: 13px !Important;
}
3— Custom CSS again:
.big-footer .woocommerce {
background: transparent !important;
}
4— Custom CSS:
.blog-holder .box-holder .post-info h2 a {
font-size: 22px !important;
}
5— Can you please try to be very specific about the question and explain it more to us, in this way we can easily understand you and give you the proper answer 
Kind regards,
—Ylli
Hi thanks all of ‘em worked like magic 
Okay so the slider appears nicely on my homepage which is: www.peekmybook.com BUT it also appears on these pages (my product’s pages):
http://www.peekmybook.com/product/new-the-passbook/ http://www.peekmybook.com/product/blank-space/ http://www.peekmybook.com/product/little-companion-the-travel-diary/ etc etcI want the slider to appear only on the homepage. Thanks!
Hi cil13,
Hmm this is the first time i hear this and it’s very weird why is happening. Have you done any customization of our theme please?
Can you please disable all your third-party plugins (plugins that don’t come with our theme) one by one, and check if this problem is solved.
Kind regards,
—Ylli
Hi I am using woocommerce plugin (e-commerce plugin) from wordpress, turning it off will turn off the ‘shop feature’ as well. I have read a lot of similar problems about this but haven’t find the answer yet
I truly wish there’s a css code that can hide the slider on every other pages beside the homepage.
Hi cil13,
Can you please send us your site URL and WP credentials on email? We need to investigate your problem and then get back to you with possible solution.
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. Also emails response time can be up to 7 business days.
Kind regards,
—Ylli
Sent. Thanks!
Hi I have fixed the problem by myself! Hope you’ll see this message and won’t be bothered by my email. Thanks! I have another questions:
1. The white space between header and the slider is too big, how to I reduce the white space? 2. I want to reduce the white space between the slider and ‘default sorting’ dropdown. 3. I want to reduce the white space between ‘default sorting’ dropdown and my products as well. 4. The ‘media’ tab is missing on mobile version. 5. When I open ‘media’ and ‘a life worth living’ tab on my mobile phone, the pictures shown are all way bigger than my screen. I want them to fit just nice or shown full according to my phone’s screen.
Thank you in advance!
Hi again,
I will give you some CSS that you need to paste in the Custom CSS area to fix your issues:
1. This code should reduce it it:
.home .main-header {
padding-bottom: 0px !important;
}
2. Please check some rows or blank content that is there and remove that in the page editor, it should fix your problem with the spacing here.
3. This is the code for it:
.woocommerce .woocommerce-header {
padding-bottom: 0px !important;
}
4. That’s really strange, I will check this with the team and get back with an answer.
5. Please format your page and create layouts via the Visual Composer otherwise it won’t work as desired, the theme is meant to be used with the Visual Composer which designs the architecture of the pages.
Kind Regards,
Art
Hi no 1,3,5 done! Thank you. For number 2: I can’t seem to find any blank space to remove? Waiting for answer for number 4. Thank you so much
Hi there,
This is what I am trying to say when you edit a page:
Best Regards,
Art
Hi Cicilia,
We saw that you have rated our theme Kalium with 4 stars, and there was not any reason why you think that our theme deserves this rating.
Can you please tell us if you have any problem with our theme? As you see we are continuously updating Kalium with new features, updates, compatibility issues with other plugins and other things even that it has been time that we created this theme.
When any client rates us with low stars we think that it will not contribute so much on our product improvement.
We kindly ask you if you can increase your rating on our theme.
If not, at least tell us what we need to improve to make our product more sophisticated to meet your needs.
Hope that you will reply us soon and have a great day 
Kind regards,
—Ylli
having problem with the menu choosing the remi photography template in mozilla. In chrome and explorer everything is ok!
is there something i can do? iam in a real hurry here!
Hi, I was wondering, how do achieve the image on the top right hand corner as displayed on the blog demo? Refer to image: https://goo.gl/photos/ttpYNd5BEnFHd4MN8
Thanks for your great support
Hi Laborator, I have a few questions about your great template :
1) I would like my menu tabs to be clickable so that when you click you will access the page with an overview of whatever content is in there, like the Portfolio Page tab you have on the demo. How can I add this option to the other tabs ?
2) I wish to change the content of the footer, where at the moment it says “Kalium. We are a multi functional agency, we love good things and great design Say hello to us hello@kalium.com” Where can I edit the footer ?
Many thanks in advance for your answers !
Hi there,
1— Can you please try to be very specific about the question and explain it more to us, in this way we can easily understand you and give you the proper answer 
2— Just go to WP Dashboard > Appearance > Widgets > Footer Widgets and you will find that text there.
P.S: Note that the answer may already be posted so search within the forum before asking a question, there is a chance that you will find the same question answered 
Thanks for your understanding
Kind regards,
—Ylli
Hi there, i just recently bought your theme, which is working really well for me so far! The only question i’d have is it possible using the revolution slider to create a click-able png layer to url link while parallax is activate?
I’m having trouble finding where and how I can change the color of the lines in the contact form fields. I bet it’s easy but I’m having a “stupid” day. 
Hi manos,
I hope that this week started well for you 
You can change theme styling by going to Theme Options > Theme Styling, but you can do this with CSS too.
It’s better if you send us your site URL to give you the exact code, but please use the following CSS code and check if that helps you.
Can you just add the code below to Custom CSS:
.contact-form input, .contact-form textarea {
border-bottom-color: red !important;
}
.contact-form textarea {
background-image: linear-gradient(red 1px, transparent 1px) !important;
}
Kind regards,
—Ylli
Hello Ylli! – made the code change but didn’t affect the form.for further help this is the site address www[dot]benice[dot]gr thank you!
Hi manos,
I just tried the code on your site and it works as it should, so please just add this CSS:
.contact-form input, .contact-form textarea {
border-bottom-color: red !important;
}
.contact-form textarea {
background-image: linear-gradient(red 1px, transparent 1px) !important;
}
.message-form .form-group .placeholder {
padding-top: 2px !important;
}
If that still doesn’t work, can you please paste all your CSS codes that you have added on the Custom CSS on the Pastebin page, then send me the link and i will check if you have made any mistake there.
Kind regards,
—Ylli
Indeed it works! is it possible to change the color of the line running under name and email fields?
Hello! My name is Alexandra Calhau and i’m from Portugal. I have some questions about purchasing the Kalium Theme. The theme will be used to create a final product, website, for the company i work for. I would like to know if the price tagged, 59$, is for 1 month, 6 months or even for a year. The regular license is what I need to purchase to create the website. Thank you
I have a question on Kalium Theme, and using the Architecture layout, is there a custom css that will make the logo/navigation to be moved to left/right portion of the page.
Thank you.
Hi Art, Thanks a lot! It worked on the main page. But, is there a way that the changes will be apply to other pages as well?
Thank you
Hi, what widget are you guys using for the blog demo shown on the website, specifically regarding the picture and ‘about me,’ as well as the instagram and ‘follow me’ widget?
PS, great theme..
Hi adriaanlampies,
Thank you for your kind words 
We have used WP Instagram Widget and Rotating Tweets (Twitter widget & shortcode) plugins.
Here are some screenshots to help you understand this procedure:
and the whole Blog Widgets looks like this
Kind regards,
—Ylli
Hi Laborator-Team
I’d like to use @fontface in Custom CSS to show my webfont named FSElliotWeb-Light located in the root folder of http://hocus-pocus.li
I’ve tried out a lot of different code variations, but nothing happens.
Please take a look at the code below:
@font-face { font-family: ‘FSElliotWeb-Light’; src: url(http://hocus-pocus.li/FSElliotWeb-Light.eot; /* IE9 / src: url(http://hocus-pocus.li/FSElliotWeb-Light.eot?#iefix) format(‘embedded-opentype’), / IE6-IE8 / url(http://hocus-pocus.li/FSElliotWeb-Light.woff) format(‘woff’); / Modern Browsers */ font-weight: default; font-style: default; }
p { font-family: ‘FSElliotWeb-Light’, sans-serif; !important; }
What the hell is wrong with this???
Thanks and btw: We love your theme!
Hi,
You can try inserting the correct quotes in that code:
@font-face { font-family: "FSElliotWeb-Light"; src: url("http://hocus-pocus.li/FSElliotWeb-Light.eot"); src: url("http://hocus-pocus.li/FSElliotWeb-Light.eot?#iefix") format("embedded-opentype"), url("http://hocus-pocus.li/FSElliotWeb-Light.woff") format("woff"); font-weight: default; font-style: default; }
p { font-family: "FSElliotWeb-Light", sans-serif !important; }
You should insert that code in the field Custom CSS in your dashboard.
Kind regards,
Rodrigo
Hi Laborator ! I highly recommanded your theme to a friend and he didn’t found how much installs he can do with one purchase. He has 2 websites (2 domains), can he installs Kalium on both of them ?
Best regards
Jonathan