440 comments found.
Was there a way to fix the Bk Post block 2 when it goes out of alignment? I saw the comments above but didn’t find the way to fix it. Thank you
Can you give me a screenshot? I will take a look to understand more about your issue
Thanks
yes i will email it to you
Hi there – the titles seem to be all large caps – can I change it to normal font? Please let me know how.
Thanks
Hi,
You can change the title via Theme Options -> Typography
Thanks
I tried but it still shows in capitals. I need to make it like normal writing and not all caps. Anyway we can do that?
Hi
Which kind of title (module title or post title) that you want to make it normal? I will send you a correct CSS code to to that
Thanks
Can you pls send me a code with I can change either or both? That way I can keep my options open in the future.
For module title
.module-title h2, .page-title h2, .module-title .sub-title {
text-transform: none;
}
For Post title, it depends on which kind of module, so please let me know which module you want to change the title, I will send you a properly code Thanks
Hi Thanks so much!!
the post titles on the Single Post page and on the Homepage – am not sure what module it will be.
.s-post-header h1 {
text-transform: none;
}
In homepage, you can send me a screenshot if you are not sure what the module isThanks
Here is my blog address – http://drishtikone.com – btw, I added the code to the CSS Code box in theme options but the single post title didnt change. Can you pls check and let me know how I can do it?
Can you give me the WP admin account? I will help to add the code
sent in an email via the profile page.
Another question – The page CSS seems to have a strange issue – the visited links turn the same as normal text color.. so its hard to find the links from normal text. This doesn’t happen in the posts. Also, I am unable to add a sidebar to a page. The default template doesn’t seem to work. Here is a link to a page – http://drishtikone.com/about-drishtikone/get-website-like-drishtikone/ – you can check the visited links issue there.
Thanks, -d.
Hi,
The account you gave me does not work, could you please check it again?
Thanks
.post-content a:visited { color: #DD3333; }
Thanks
Hi there! I would like to get in contact with you guys regarding this theme, I wish to order a custom made theme based on Sense, for an online music platform Im working on. Please get back to me via my email as soon as possible. best wishes John
Hi
Thank you very much for your interest in our theme. Please send us your detail request to bkninja.team@gmail.com.
Thanks
Hi,
I’m currently developing locally, my database has thousands of posts but my installation of this theme is brand new.
It seems that:
1. Going to any ”/category/page/#/” gives me a 404 (the next buttons and number buttons also lead to 404s)
2. Any subcategory, aka ”/category/sub-category/” also returns a 404
I tried disabling breadcrumbs, this didn’t fix anything.
Thanks!
Thank you very much for using our theme, Can you go to Settings -> Permalink -> Tick to “Custom Structure” -> Paste this to the field and check again
/%category%/%postname%/I really need a online site to take a look your issue to help you fix it, so if the above method doesn’t work, please set it up online so I can take a look
Thank you
Hey bkninja,
Thanks for the reply. I already had this permalink structure set—but I discovered the issue.
I was using ”.” (without the quotes) in the category base field to strip the category base from the theme. Once I remove it, everything works again.
BUT, now I have another problem, which is “category” in the URLs. Is there any clean way to remove this? Should I use the remove category base plugin?
Thanks!
Can you email us the WP admin account? We will take a look and give you a solution soon
Sorry, I’m still developing locally—and because the site is gigantic, can’t really dedicate the resources to take it online just for debugging!
Thanks in advance though~~
Oh, sorry I forgot this. I think you should ignore it until you make the site online, then I will come and take a look the issue
Thanks
Thanks—
Additional question—is it possible to remove the :hover: effects from the homepage hero images (assuming I have demo content installed) and thumbnails from the CMS? I can obviously do it with CSS but I’m trying to simplify on-page elements.
Thanks
You can add this snippet code to the custom CSS field in Theme Option to remove the hover effect:
.thumb:hover img {
opacity: 1;
transform: none;
}
Regards
Hey bkninja,
Is it possible to make alterations to CSS directly through the child’s style.css? I usually prefer not to use custom CSS fields in themes.
Thanks!
Also, it seems that the above code removes hover effects from thumbnails, which is great, but I also need to remove the zoom effect, hover opacity, and the gridlines lines from col-md-8 large post.
I also need to make it so that images/ homepage thumbnails don’t need to be hovered on to show post snippets. Basically I’d like to strip everything that happens on hover.
Thank you!
Hi,
If you want to remove all hover effect from the theme, it will take time a lot. I think you should pay a little fee for the service. We will check all module and help you remove them soon. You can email us your detailed request to bkninja.team@gmail.com
Thanks
Hi,
I’ve already paid for support for 6 months with the purchase of this theme. I understand that my purchase doesn’t include customizations, but it does include:
- [Answers to] your specific questions about the features and functionality of the item
Therefore, can you please at least tell me the element/ class names of the gridlines/ zoom/ opacity? I’ll write the CSS myself, I’m just unable to find the correct containers when inspecting the elements.
Thanks
Hi,
Sorry, as you understand, our support is just to help you when the theme has any issue, it doesn’t include any customization. we are just able to help you to customize some modules but for overall the theme, this is impossible, so please let us know which module you want to remove the hover effect.
Regards
Thanks; col-md-8, or the big main module from hompage 1/ the demo, is the one from which I’d like to remove the effects. The effects are resource intensive and slow things down. I think if you can just tell me the elements that create the effects, then I can write the CSS for anything on the site. I just need your small example.
Thanks again
/**** Feature 1 ****/
.module-feature1 {
min-height: 480px;
}
.module-feature1 .meta{
letter-spacing: 1.5px;
text-transform: uppercase;
position: absolute;
font-size: 14px;
top: 53%;
width: 100%;
left: 0;
margin-bottom: 10px;
text-align: center;
-webkit-transition: -webkit-transform 0.35s;
transition: transform 0.35s;
-webkit-transform: translate3d(0,-105px,0);
transform: translate3d(0,-105px,0);
}
.module-feature1 .post-c-wrap {
position: absolute;
top: 0;
width: 100%;
height: 100%;
left: 0;
}
.module-feature1 .content_in img {
width: -webkit-calc(100% + 60px);
width: calc(100% + 60px);
opacity: 1;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(-30px,0,0) scale(1.12);
transform: translate3d(-30px,0,0) scale(1.12);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.module-feature1 .small-post .content_in img {
max-width: 150%;
}
.module-feature1 .small-post .content_in:hover img {
opacity: 0.7;
-webkit-transform: translate3d(0,0,0) scale(1);
transform: translate3d(0,0,0) scale(1);
}
/* Large Post */
.module-feature1 .large-post .content_in {
height: 480px;
}
.module-feature1 .large-post .post-c-wrap {
padding: 30px;
}
.module-feature1 .large-post .post-c-wrap::after {
position: absolute;
content: '';
opacity: 0;
top: 30px;
right: 50px;
bottom: 30px;
left: 50px;
pointer-events: none;
border-right: 1px solid #fff;
border-left: 1px solid #fff;
-webkit-transform: scale(1,0);
transform: scale(1,0);
-webkit-transform-origin: 100% 0;
transform-origin: 100% 0
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
}
.module-feature1 .large-post .post-c-wrap::before {
position: absolute;
content: '';
opacity: 0;
top: 50px;
right: 30px;
bottom: 50px;
left: 30px;
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
-webkit-transform: scale(0,1);
transform: scale(0,1);
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}
.module-feature1 .large-post h4 {
padding-top: 29%;
margin: 0;
font-size: 32px;
text-transform: uppercase;
position: relative;
letter-spacing: 0.1em;
padding-bottom: 20px;
word-spacing: -0.15em;
text-align: center;
-webkit-transition: all 0.35s;
transition: all 0.35s;
-webkit-transform: translate3d(0,-30px,0);
transform: translate3d(0,-30px,0);
}
.module-feature1 .large-post h4:after {
content: "";
height: 2px;
width: 100px;
position:absolute;
bottom: -10px;
background-color: #fff;
left: 50%;
-webkit-transition: all 0.35s;
transition: all 0.35s;
transform: translatex(-50%);
-webkit-transform: translatex(-50%);
}
.module-feature1 .excerpt {
padding: 0.5em 2em;
text-transform: none;
opacity: 0;
text-align: center;
-webkit-transform: translate3d(0,-10px,0);
transform: translate3d(0,-10px,0);
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
}
/* Small Post */
.module-feature1 .small-post .content_in {
height: 225px;
}
.module-feature1 .small-post:last-child {
margin-top: 30px;
}
.module-feature1 .small-post .post-c-wrap {
padding: 30px 15px;
}
.module-feature1 .small-post .meta-title-wrap {
position: absolute;
bottom: 0;
left: 0;
padding: 16px;
text-align: right;
width: 100%;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,1)));
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,1)));
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
}
.module-feature1 .small-post .meta {
font-size: 14px;
text-transform: uppercase;
position: static;
text-align: inherit;
-webkit-transition: none !important;
-webkit-transform: none !important;
transition: none !important;
transition: none !important;
}
.module-feature1 .small-post h4 {
font-size: 18px;
margin-top: 8px;
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 0;
}
.module-feature1 .small-post .excerpt{
padding: 0 10px 0 0;
width: 70%;
border-right: 1px solid #fff;
text-align: right;
opacity: 0;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(-40px,0,0);
transform: translate3d(-40px,0,0);
}
.module-feature1 .small-post:hover .excerpt {
opacity: 1;
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
.module-feature1 .small-post .view-more:focus {
color: #39545e;
}
Regards
Hey bkninja, thanks for this—it worked for removing the gridlines… but is there a way to use this without altering the actual bkstyle.css?? I’m nervous that these changes will undo as soon as the theme updates. The custom CSS field doesn’t work.
Also, this didn’t remove the “zoom in” effect! Can you help me with that?
Thanks!!!
Hi, For the custom CSS field, you should put the correct CSS code to make it work. I recommend you should have a little bit CSS knowledge to work on this field. If not, please use ”!important” each time your code doesn’t work. Please take a look this article for your reference: https://css-tricks.com/when-using-important-is-the-right-choice/
For zoom in effect. Can you send me the link to the issue?
Thanks
Hi bkninja, I’m very familiar with CSS—the issue with using ”!important” fields for everything is that in the code you suggested above you deleted several lines from the bkstyle.css. Are you suggesting that I “none;” all the lines you deleted?
Also, I am still developing locally, so no I can’t send a link—but to describe what I’ve requested, I want the zoom effect and the borderline effect, aka the hover effects, removed from the homepage Feature Module 1. To refresh your memory from all of my posts from before in this thread:
“Is it possible to remove the :hover: effects from the homepage hero images (assuming I have demo content installed)?”
and
“I also need to remove the zoom effect, hover opacity, and the gridlines lines from col-md-8 large post.
Basically I’d like to strip everything that happens on hover [on the homepage]”
and
“Thanks; col-md-8, or the big main module from hompage 1/ the demo, is the one from which I’d like to remove the effects.”
Thanks bkninja!...
Hi,
Could you please send me some screenshots and write more details on them to our email (bkninja.team@gmail.com)?
Hi, I sent you an email of the same request with screenshots. Thanks!
Hi there, i have an issue with bkninja widget social counters – i can’t change old facebook URL. Even when I am changing it in widget settings, there is still old facebook url on front of my page. Is there any solution for this problem?
Hi
Could you send us the FTP account and WP admin account? Our supporter will take a look and help you fix it
I’m noticed that the support period for your license has been expired. So please extend it for further support
Thank you very much
Hi!! Please, on the main menu i want to change background color on hover links. How i can i do it?
Hi,
Can you give us the link to your page? We will take a look and give you a solution
Thanks
How do I disable the Related Posts functionality. Or how do I disable the related posts from showing images?
Please add this snippet code to remove related articles box in single page
.related-box {
display: none;
}
Thanks
What file do I edit to do that? Will that apply to all single posts?
Oh sorry, you can apply the code to the Custom CSS field in Theme Options. It will help to remove related articles box in all single posts Thanks
Thanks! Also, what if I only want to remove the images from displaying on the related posts instead?
So please use this snippet code instead
.related-box .thumb{
display: none;
}
Thanks
Thanks for the help.
Hi, I found this among the comments:
“Hi, My social counters widget is leading to Facebook official page no matter if add my own username and even if I delete and re add the widget it still doesn’t work. Any solution ? Thanks”
I am experiencing the same problem. did you find a solution?
Hi,
Thanks
Is it possible to create/duplicate Post Block on the Fullwidth Section?
Hi
Yes, you can add more Post Block via Pagebuilder Panel
Thank you
I send message to you already, could you please check our issue? Thanks
Hi
I have replied your email, please check it
Thanks
Hi – quick question, what’s the css code to allow me to change the default font size on both posts and pages? Thanks in advance.
Hi
You can open bkstyle.css in css folder, scroll to the line 44, then change the font size there.
Thanks
Hi. The “related articles” section in the single post page displays very old articles. How can i set only latest month’s articles to be displayed?
Hi,
Sorry for late reply recently cause this time is our holiday
Can you email us the FTP and WP admin account? We will try to edit the code to help you
Thank you and so sorry for any inconvenience caused
Hello, I have a problem concerning the titles of the sidebar. I don’t understand why, but the title is struck through, as you can see here, and the font seems different than the one I see on the Demo version : http://img15.hostingpics.net/pics/296277Capturede769cran20160128a768013414.png
What could I do ?
Thanks !
Hi,
Could you please email us the WP admin account? We will help you fix it
Thanks
Hi, Unfortunately, I’m working in “local”... Well, I’ll get back to you when I’ll migrate the website on WP !
Bye ! And thanks for the quick reply.
You can fix it your self by uninstall the plugin (Sidebar Generator), then re-install it via Appearance -> install plugin, your problem will be fixed then, but please do not upgrade this plugin, you can give us the WP admin account and we will help you upgrade it
Thanks
Hi, It worked. Perfect.
Thank you very much !
Hello, i’m wondering if it’s possible to use an infinite posts scroll widget with this theme
Hi
Sorry that the theme doesn’t support an infinite widget. We will consider to add it in the future update
Thank you
Ok i hope this will happen soon! Thank you very much for the answer
Hy! Great work!
I have a question:
Why does main menu disappear when I’m scrolling down? Sticky Navigation menu is available?
thx
Hi,
Thank you for your interest in our theme. Yes, the theme supports an option to enable sticky Navigation in Theme Options panel
If you need anything else to ask, please feel free to contact us again
Best regards
thx for your quick answer.
Before I purchase I have more questions:
1) Is it sure? Is there sticky Navigation main menu?
Your theme’s Item Details contain: sticky sidebar, but sticky Navigation is not writed. Could You show a screenshot in the dashboard of Sense theme settings? (Sticky, or fixed) Or a sreenshot, where main menu is on the top of the website when You are scrolling to the middle of the website? I believe you, but I would check this. 
2) What does “post examples -> audio examples -> standard popup” mean? Nothing happens when I click.
Thx
Thank you for your interest in our theme,
1) I’ve enabled the fixed menu (sticky menu) on our demo page, so please check it here http://sense.bk-ninja.com/
The fixed menu is just available on Desktop view, on mobile view, it’s disabled to help the reader has a larger view.
2) The audio link that we used in that post is not available now, so I have changed to another audio link, please check the post again
http://sense.bk-ninja.com/social/eleifend-turpis-consectetuer/
Thanks
Please let me know once you already checked it. I’ll return the menu setting then
Thanks
thx! Very great work and support!
I have found a fail on demo site: checked “boxed site layout” Gallery Post – WP Native goes wrong. I tested 1280px and 1360 px, too. Ckeck please the screenshot: http://kepfeltoltes.hu/160125/goes_wrong_www.kepfeltoltes.hu_.jpg
Hi,
Thanks, I returned the menu setting as it was.
About the issue you saw, it’s not really an issue, when you check with another screen. Please try to reload and check, sometime flexslider runs incorrectly when the width of browser suddenly changed.
Thanks
Ok, thx. I’ll purchase it soon.
Thank you 
Hi, we need help to setup the Social Counter on the widget sidebar. All social works fine but Facebook. We follow the instruction, but there’s no way to show the likers.
Thanks
Hi
Could you send us a WP admin account? We will take a look to help you fix it
Thank you very much for using our theme 
Hello, I want a beautiful magazine theme and yours looks really meet the expectations of my client. I have test all templates and functionality on the demo, but I can not find much information on the page builder . Is it possible to access to a backend of a demo website ? Thank you
Hi,
Sorry that we don’t have a test website for customer, if you want to take a look some screenshot, please email us at bkninja.team@gmail.com, we will send them to you
Thank you very much for interest in our theme
Hi bkninja! I am trying to work with the child theme. I am checking that only the files on the theme root folder can be use in the child. The files that are in a diferents folder are ignored. Can you help me?
Hi
Can you let us know which files you have tried? What did you want to put on that files so that we can try on our side?
Thanks
I tried to change two files and add the translation files:
1- framework/widgets/widget_facebook.php ( I want to change data-show-facepile to “false”)
2- inc/libs/bk_core.php ( I want to change the image size for Standard Post Format)
3- If I add the folder languages with the .po & .mo files, I can’t see the translation.. I need to add the files on the sensetheme folder.
Thanks
Do you know which is the issue? Thanks
Hi,
So sorry for late reply, can you give us the FTP and Admin account? We will take a look your issue
Thanks
ok! I sent you a email with the credentials
I have a new client very interested in my buying your theme for her over any other mag style WP theme, looks amazing! just curious, it hasn’t had any updates in 7 months… and there isn’t any reply to questions here for over a week.. has me bit concerned, so pls let me know thnks!
Hi,
Sorry, We are usually update the theme to make it better and better, you can see the latest update status in the right sidebar of the item page: http://themeforest.net/item/sense-blog-magazine-news-theme/10434558
It says, the last update is 10 December 15.
We will update the latest version’s information in the theme update log soon
Thank you very much for your interest our theme
Ahhh ok Grt, for some reason I thought the changelog didn’t reflect that so I aplgz and thnks for letting me know and I’ll let her know and prob buy this amazing top ranked theme asap!
Thank you very much, we hope to see you and your client be one of our valuable customer in the near future
Best regards
I have a new client very interested in my buying your theme for her over any other mag style WP theme, looks amazing! just curious, it hasn’t had any updates in 7 months… and there isn’t any reply to questions here for over a week.. has me bit concerned, so pls let me know thnks!