8337 comments found.
Hi,
Is it possible to have the same layouts for Posts as Portfolio items?
I use a few extensions that don’t work very well for portfolio items but we love the way that you’ve constructed your layouts for your portfolio items. Would be great to have the ability to layout our posts in the same way as the portfolio items….
Thanks,
Ian
It’s just css right?
YouTube Embed videos don’t work on iPad or iPhone. Using Kalium v1.7.2. See here: http://www.estiponagroup.com/virtual-office-vs-traditional-office/
Hi, first of all congratulations for this wonder theme! Question: in the Theme Options you can set a Custom Logo. But what if I want to have a different logo (a more concise and iconic one) on a mobile?
Hello again friends,
1. I’m having trouble customizing styling. I’m using a Kalium Child Theme, and I thought any CSS I change in the Custom CSS page of the WP Admin, or changing the CSS in within the Child Theme folder itself would override any CSS from the Parent Theme. But neither works for all the changes I attempt.
For example, .section-title p { font-size: 14px; line-height: 150%; } should change the text “I am a thoughtful and holistic designer, tailoring solutions to enliven businesses, entice customers, and create engaging brand experiences.” on the page http://www.jcloewe.com/about-me/ , but doesn’t have an effect.
2. Additionally, on Theme Options > Typography in the WP Admin I’ve changed the Primary Font and Heading Font, but there’s another font I want to add for specific elements, such as small copy blocks (like .section-title p above) and the Header Nav links. However, I don’t know where to add the font url link, <link href=’https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300' rel=’stylesheet’ type=’text/css’> or @import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300); before I can call it within the CSS.
3. On the sticky menu, the font changes. How is this controlled? I’d like the font size to change but not the font itself. I can’t seem to control these changes within CSS customization either.
Thanks in advance for your help! JC
Hi JC
1. You must add the *!important” rule.
As for your above code:
.section-title p { font-size: 14px; line-height: 150%; }
You should write it like this
.section-title p {
font-size: 14px !important;
line-height: 150% !important;
}
and it will overwrite the original CSS 
2. If you want to add another font, you must do this manually, so add this custom php code:
add_action( 'wp_enqueue_scripts', 'custom_font_enqueue' );
add_action( 'wp_print_styles', 'custom_font_define' );
function custom_font_enqueue() {
wp_enqueue_style( 'open-sans-font', 'https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300' );
}
function custom_font_define() {
?>
<style>
h1, h2 {
font-family: "Open Sans";
}
</style>
<?php
}
This is more consistent fix.
3. Sticky menu uses options defined in Theme Options > Header and Menu under “Sticky Menu” heading.
/* The default menu container has this class: */
header.main-header {
}
/* Sticky is activated */
header.main-header.sticky-active {
}
So use this CSS to control the font size of sticky menu.
The skin changes on sticky menu when this option is set:
http://drops.laborator.co/q29zHopefully this helps you.
Thanks for your detailed response.
But I’m not having much luck with customizing the CSS. I’ve tried using the main WP Admin Custom CSS page, the Appearance > Editor page, the Simple Custom CSS plugin, and now I’ve edited the Style.css and Functions.php files directly in a text editor and uploaded them to my server, and nothing has worked. In fact, the contents of these files does appear on my Appearance > Editor page after uploading them. I’ve checked out the results on other devices as well, and the changes aren’t there.
Any advice? Am I missing something?
Thank you, JC
Hi jcloewe,
Can you please send us your 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
I received your email, thank you. First, can you take a look the code from my child theme’s functions.php file and tell me what I’ve done wrong? I made these changes from the WP Codex while I was troubleshooting. I can’t find any more helpful advice within these Comments or the WP Codex or forums. (Unfortunately I can’t get all the code to display in this comment.)
The other problem might be with my hosting, that’s thrown some other errors.
Thank you in advance, JC
Hello,
One question, how I can do to make pictures that I have in the blog post paralax have an effect?
my web: http://www.javierbalvin.com/2015/11/14/premios-graffica-zaragoza/
Thank you
I’m having issues with images not showing up in blog posts. Also theme runs kind of slow. See in other post that you recommended to add the code below to fix it but didn’t worked for me. Can you help?
.portfolio-featured-image a { display: block !important; }
forgot to include the site: http://corama.mx/
thanks it worked!!!... ps: when the new version will be available?
Hi corama,
Glad to hear that, we don’t have an exact ETA, but we are on the final stage of the next update 
When the update it’s ready you will receive an email if you have enabled “Get notified by email if this item is updated” from your Downloads tab.
Kind Regards,
—Ylli
Hi,
I have a question, When I set the portfolio to masonry, the first thumbnails that are instantly there appear in their original aspect ratio. But then when you scroll the rest of the thumbnails load with a more square aspect ratio, being cropped a bit. How can I have them load in their original aspect ratio? I have updated to the latest version 1.1.5, how can I change that?
/ Winnie
Hi,
Im having trouble with the child theme style sheet, it isn’t picking up any styles. I tried switching to ’@import url’ and that isn’t working either… I can see the stylesheet is being included, but the styles are not being picked up?
Thanks
Also when using masonry items to specify individual portfolio items and sizes I can no longer control which categories are displayed, but if I just use custom query I can specify the categories?
Is it possible to control the category menu while using masonry items? (this is so I can use portfolio on another page).
Finding a lot of great features btw, its very impressive… hoping theres a solution here? ; )
Hi there,
To use custom css in your skin you will need to use the built-in Custom CSS which is located in the left of admin panel bar sidebar.
You can only select which categories to be displayed with the Custom Query otherwise all the categories will be shown in the main portfolio.
Kind Regards,
Art
Thanks for the confirmation, Ive used css to hide categories on specific pages, seems to do the trick,
I also need to filter my blog posts by category, I see it displays category in the individual posts, but how do I add a category menu for more convenient for filtering?
Thanks
it’s me again
1. I had this problem
Fatal error: Call to a member function get_cart_url() on a non-object
I applyed the fix (replace the file) as you suggested here
http://themeforest.net/item/kalium-creative-theme-for-professionals/10860525/comments?page=107&filter=all#comment_11513362
I just wanted to let you know that the patch seems to work fine.
Good Job!
2. Is this script coming from Kalium?
EDIT: cant’ post the script here, it’s a mess. Go to www.woodandmood.com and inspect the source code. Search for “lnx.woodandmood.com”. There is a file which was the previous brand logo set in kalium properties. There is no other place where it was used, so I guess it comes from Kalium. Now, I changed to filename and the logo appearence and have set it in Kalium propoerties, but the file is still coming from the test server, which is this “lnx”. I want this to be www, but I have no idea where this is coming from. IF IS NOT KALIUM, skip these following notes.
The problem is the lnx.woodandmood.com link. I guessed it was the brand logo, because that file is the previous logo file. I changed the file and even the filename in the Kalium brand logo selection but this lnx and old filename is still there (cleaned cache, changed browser, tested also on a brand new pc). The “lnx” is the test server, I want this script to use the www, but have no idea where this is coming from.
Hi woodandmood
1. Great to hear this worked fine for you. Its weird why this is happening sometimes, however its good that the fix did worked.
2. This may be related to theme options sometimes so please check for available URL that are set in Theme Options and see if if somewhere this lnx. subdomain is present.
After inspecting your site saw this lnx subdomain which does not come from Kalium theme code:
http://drops.laborator.co/12d04For this I think you should try to deactivate few plugins and see if it solves the issues.
If you have access in phpMyAdmin, this would make this process lot easier to find the problem, if so, go to the database where your wordpress installation is configured to, then click Search as shown here:
http://drops.laborator.co/12WAyThen follow this screenshot:
http://drops.laborator.co/12CErThe results will have the browse link, so click browse and then edit that URL as shown here (I tested with www query, because I don’t have lnx in my local copy):
http://drops.laborator.co/161FFHopefully this will help you.
Thanks, you set me to the right path. Have to go through it
Well, I think I made one of the most “noobish” question in my entire career… LOL
It’s yoast SEO and it’s even written in a comment box. I’m very sorry for wasting your time.
URGENT CRITICAL ERROR!!! OPS!!!! please look at the blog, the images have disappeared
http://holamac.com/blog-3/Thank you for a wonderful theme. Theme I use is inde AGENCY, point color is not black 00b19d color.
Please let me know how that can be used as black.
dear-forest.com
I am using the AGENCY theme.The part of the #00b19d color it to was changed to black. Please tell me how.
How do you have the logo color (dark or light) change according to background? I have created a light and dark logo but does it dynamically change or is it a manual change for each page?
Thank you!
I am using the Arch demo theme. When I use my own logo, it only shows for a couple of seconds and then the “arch” logo shows up for the remaining slides. Where do I change the logo to be consistent for all slides in the Revolution Slider. http://lca-architects.com/
Also, I am migrating an older theme to Kalium. How do I get the pages from the old theme (which had portfolio gallery images) into the new portfolio pages? I have about 90 portfolio pages with 5-10 images each, so any help would be appreciated. Thank you!
Hello, I would like to comment one thing… it is not very important but I’d prefer to change it if it can be… It’s about the blog functionallity.
When you are navigating through the blog items in the witget side bar, if you select a tag, it shows the correspondent entries with this tag, and the title on top of the page changes to:
Tag: ‘the tag word’
But when you select a category, it shows correspondent entries, but the title on the top of the page is not like it was expected to be:
Category: ‘name of category’
Instead it shows the title of the blog if you have set up one in kalium theme prefereces…
Could not be changed this?? And display Category: ‘name of category’
Thak you!! Cecilia
I’ve seen it does it in your page, but not in mine…
Hello
I,ve noticed that if I change permaliks to ‘Entry name’ or custom structure, then ‘Categories:name of category’ appears in the right place…
But then, your main green color appears in most links in all pages… really I would like to change permaliks to have more ordered page names, but I don’t know how to change link colors because it’s already changed it in custom skin builder…
At the moment I haven’t changed permaliks because I don’t want the green color appear… so you won’t be able to see it… I’m going to leave it as its now but i would like to fix this thing with the category title on the top of the page…
Sorry for insisting but my client wants to make public the webpage as soon as possible.
Thank you!! Cecilia
Hi Cecilia
I had to test this and found this was a bug in our theme, so I’ve managed to fix it and now category label shows, download this file:
http://drops.laborator.co/1jDA+And replace it in:
/wp-content/themes/kalium/tpls/
This should work for you.
possible, change the dropdown menu to open menu? not if I explain well
When the survey is completed, users have to see the % of all responses. how I do?
forgive this question was not for you
sorry for using your time. it is possible that the Main menu, is always deployed ?. Users do not have to click to see the menu
I can’t find “Show menu items only when clicking menu bar link”, I go to theme options -> Header and Menú.
Please check again and type CTRL + F to find it, I am sure it is there.
Cheers! Art
YES!!! excuseme for all i find it!!!!
http://imgur.com/a/ulacy
1st image is chrome, 2nd is firefox
hi there! when I activate the Coming Soon Mode, is there a way that users Editor doesn’t see it when they are logged in?
Hi
i am working on kallum theme
i have overright the post howdy-owls and now i want the new post exactly like howdy-owls in the portfolio-addnew item i cant find how to insert PORTFOLIO GALLERY
Please help
Thanks
Neeraj Ajwani
Hey there,
Have a problme with images size of catalog page. I have changed my catalog images sizes to 550×590, have regenerated thumbnails with the plugin. But still my images are still bigger (555×736). What did I miss ?
http://bit.ly/218heebThank you 
Ok done ! Sorry..
Hi Julien,
Can you please send us your 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,
Art
Hello everybody,
I am about to buy this very beautiful theme but I have a question: in e. g. Aurum and Oxygen there are very nice demo sites showing columns when having a lot of text. Does Kalium support this as well?
All the best Cosimo
Hello Art,
thank you very much for your reply … I already bought the theme and you are right it is fantastic with so many features that I will never able to use them all
I had one problem and I think I solved it. As the images used on my site are white I wanted to have a fine border around them (on all product pages and product listing sites) and I added the following lines to custom css:
body img {
border-width: 1px;
border-color: #eeeeee;
border-style: solid;
}
but that way the logo got a border too. To remove it, I added:
header img {
border: none;
}
is this the way you would have done it too?
Thank you for your answer Cosimo