Toshihiro Kanai
Forum Replies Created
-
Forum: Reviews
In reply to: [Coldbox Addons] シンプルでいいですありがとうございます、Feedly のエラーは確かに起こっていたので修正します。LINE のシェアボタンも v1.2.0 で追加予定なのでしばらくお待ちください !
Forum: Themes and Templates
In reply to: [Coldbox] Please add a social button for TelegramI’ve just upgraded the theme to v1.7.1 which adds the support for Telegram button ??
Forum: Themes and Templates
In reply to: [Coldbox] In-page links don’t workShouldn’t it be “id” attribute instead of “name” attribute? So you should have
<a id="part2">
then you can like to it with<a href="part2">
(It isn’t specific to this theme, but in general HTML).- This reply was modified 5 years, 10 months ago by Toshihiro Kanai.
Forum: Themes and Templates
In reply to: [Coldbox] Caption display for featured imageI can confirm that the CSS code is working to change the padding top and bottom, maybe you just have a typo somewhere ??
Forum: Themes and Templates
In reply to: [Coldbox] Caption display for featured imageFor 3, I’ve already answered at https://www.ads-software.com/support/topic/decrease-the-gap-between-the-title-and-the-post-contents/
The other ones cannot be done with CSS; some PHP codes required. The original codes are in single.php so you can create a child theme which overrides this file to achieve them.
Try this:
body .title-box-inner { padding-top: 40px /* Customize this value, 40 is default */; padding-bottom: 40px /* Customize this value, 40 is default */; }
If you want to customize the padding for mobile as well, use this too:
@media screen and (max-width: 640px) { .title-box-inner { padding-left: 10px; padding-right: 10px; } }
- This reply was modified 6 years, 1 month ago by Toshihiro Kanai.
Forum: Themes and Templates
In reply to: [Coldbox] 2 questions: excerpt length – Search icon1) There’s an option to change the excerpt length in the section “Coldbox: Archive Pages Settings” of the customizer ??
2) Try this CSS:
.site-info { max-width: calc(100% - 50px); width: calc(100% - 50px); } .search-toggle { display: none }
Note that the Coldbox theme is open-source so if there’s any feature you want you can contribute for it at https://github.com/mirucon/coldbox
- This reply was modified 6 years, 1 month ago by Toshihiro Kanai.
Forum: Themes and Templates
In reply to: [Coldbox] Featured ImageThere is an option to hide post thumbnails in the posts in the customizer ??
Forum: Themes and Templates
In reply to: [Coldbox] possible conflict with a plugin?Hi there!
I’m glad that you like my theme. But since I cannot test every single plugin with the theme it can possible that conflicts occur. Could you please let me know more details about the plugin and how the plugin is “not working” with the theme? Does the layout look broken, PHP errors occur, or something else? I would like to make the theme compatible with as many plugins as possible so I appreciate that you open the thread here, but a bit more details are necessary to work on fixing this.
Forum: Themes and Templates
In reply to: [Coldbox] Height between menu and first imageHi there!
I’ve checked your website provided, and it turns out that the issue you encounter is because of the scrollbar width.
The top page of the site is a little bit long so the scrollbar is visible, but the about page is a short page and no scrollbar is visible. I’m not sure there is any solution for this, but I don’t really think it’s a problem.Forum: Themes and Templates
In reply to: [Coldbox] Add row before site descriptionHi there!
You can use the following style to achieve it:
html body .site-info { flex-flow: column; align-items: flex-start; }
Forum: Themes and Templates
In reply to: [Coldbox] Style CSS Customize hiddenNo, there’s no way to restore the customization you made before upgrading the theme on the actual theme unless you have a backup for this. This is correct behavior for WordPress, and this behavior does not come from the theme. What I suggest you is to use a child theme. This article will help you with this: https://themefuse.com/child-themes-what-they-are-how-to-use-them-and-why/
Forum: Themes and Templates
In reply to: [Coldbox] Related Posts on “Sticky Posts”What do you basically mean by “Sticky Posts”? Does it mean that you have checked the “Stick to the Front Page” for a single post, and everything else (such as post title, categories, and tags) are just the same as other posts? If my understanding is correct, I cannot reproduce this with that settings. Well actually, the sticky post should not be something different from a normal post, but it’s more like a post normally.
To investigate this issue deeply and to provide you with the better support, would you mind letting me know the details of your environment which WordPress run, including WordPress/PHP/theme’s versions and list of active plugins?
Forum: Themes and Templates
In reply to: [Coldbox] No share icons availableI’ve made the changes to upgrade Font Awesome 5 (not pushed the version to the directory yet, though), and the icons are showing properly with this plugin in my local test. So please wait for the next update for the fix on this! Thanks for your kind feedback. Marked as resolved for now.
Forum: Themes and Templates
In reply to: [Coldbox] No share icons availableActually, I could reproduce this now, and the root of the cause is exactly what I guessed, the plugin uses Font Awesome 5.0, that’s the issue (The theme still uses older version of it). I’m planning to update this in the future, but in the meantime, you’ll need to make the plugin not to load the font awesome from the plugin
- This reply was modified 6 years, 3 months ago by Toshihiro Kanai.