Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
Hi,
Is it possible to add floating sharing buttons to blog posts instead of having the sharing buttons at the bottom of the post? I believe floating sharing buttons increase the chance a reader shares the post.
Also; is there any progress on making Visual Composer available for blog posts?
Thanks a lot.
Hi Roman,
That's not possible through the Theme Options but I have manually generated a code that will help you move the sharing buttons to the right bottom of the window and be fixed there, use the following CSS in your Custom CSS:
.single-blog-holder .share-holder {position: fixed;
bottom: -20px;
right: 0;
background: #FFF;
z-index: 9999;
padding: 20px;
box-shadow: 0px 0px 30px rgba(0,0,0,0.1);
}
Best regards,
Laborator Team
Hi Art,
I noticed this has impact on my comment box, see attached link for example:
http://romanrobroek.nl/visiting-a-gem-among-abandoned-industrial-locations/
The comment box is squeezed together.
Hi Roman,
The code I gave you is not the reason of the squeezed comments section, please check the Custom CSS > Responsive tab to see if there is anything not necessary.
Best regards,
Laborator Team
Hi Art,
Does it not have to do with the advise you gave me a few months ago to have a fix width and position for the 'leave a reply' box? I was advised to put this code in my CSS:
@media screen and (min-width: 991px) {
.leave-reply-holder .container {
margin: 0 20% !important;
width: 70% !important;
}
}
@media screen and (min-width: 991px) {
.leave-reply-holder .container {
padding-right: 550px !important;
}
In the responsive part of the CSS is only a code for H2 titles.
Hi Roman,
That code is changing your style, set the CSS below to set it within the grid:
@media screen and (min-width: 991px) {
.leave-reply-holder .container {
margin: 0px auto !important;
width: 1140px !important;
}
}
@media screen and (min-width: 991px) {
.leave-reply-holder .container {
padding-right: 360px !important;
padding-left: 0px
}
Best regards,
Laborator Team
Hi Art,
That works, thanks for the help.
Regards,
Roman
You're welcome Roman :)
Best regards,
Laborator Team