Toshihiro Kanai
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Coldbox] No share icons availableI’ve tried to install and activate the plugin but I couldn’t reproduce this issue. But I think that caused with the different versions of Font Awesome, so if there’s an option not to load Font Awesome CSS, would you mind trying that?
Forum: Themes and Templates
In reply to: [Coldbox] Post format name changeI’m sorry for the delay!
The name comes from the WordPress core, not the theme. So the right way to change this is to use custom taxonomy and not to use the post format. Post formats are hard-coded to WordPress and there is no way to change this.
Forum: Themes and Templates
In reply to: [Coldbox] Titlebox colorsAh okay, so you can do that with the following CSS code:
.title-box .breadcrumb { color: #000000 } .title-box .breadcrumb a:hover { color: #000000 }
- This reply was modified 6 years, 4 months ago by Toshihiro Kanai.
Forum: Themes and Templates
In reply to: [Coldbox] Titlebox colorsHi!
Thanks for using the Coldbox theme! You can change the font color of title box by the following CSS code:
.title-box .post-title { color: #444444 // Change this }
Forum: Themes and Templates
In reply to: [Coldbox] How to change 1 column and fontHi,
Thanks for using the Coldbox theme! You can change the number of columns of your website from the theme customizer.
And about changing the font, this site will help you: https://medium.freecodecamp.org/how-to-use-google-fonts-in-your-next-web-design-project-e1ad48f1adfa
Create your own child theme and put link tag in your header.php, and write CSS in your theme customizer’s “Additional CSS” section.
Forum: Themes and Templates
In reply to: [Coldbox] Related Posts on “Sticky Posts”I can’t reproduce this; probably your own customization causes this issue?
Well it seems like a list style, so you can use this to hide it:ul.related-posts-list { list-style: none }
Forum: Themes and Templates
In reply to: [Coldbox] Hide Sidebar on mobile devicesIt can be hidden via CSS. Or alternatively, you can overwrite sidebar.php using a child theme ??
Forum: Themes and Templates
In reply to: [Coldbox] Always display the Logo left alignmentI’m sorry I don’t quite get what you mean, what do you want to change it to be?
The logo on the header should be on left side, probably no changes needed there? Please provide some more information here, or you can DM me on Twitter in Japanese.Forum: Themes and Templates
In reply to: [Coldbox] I want to center post-dateHi!
In order to place the post date center, you can simply copy and paste the following CSS in Custom CSS or style.css in your child theme.
.content-inside .post-meta { justify-content: center; -webkit-justify-content: center; }
Forum: Themes and Templates
In reply to: [Coldbox] google mobile badgeI believe that badge has been removed and no longer shown in the Google search results. But don’t worry, although there’s no label of mobile-friendly, your sites with this theme is still mobile-friendly (Unless you don’t have super wired stuff in your content though ?? ).
And if you have the Addon plugin installed, you should have a little lightning icon beside the URL, which says the site is available in AMP HTML. That page view is so fast so that the site visitors are not waiting for the load for a long time ??
Forum: Themes and Templates
In reply to: [Coldbox] Header Settings with logoThanks for the details and screenshot, I now got what you mean. The customizer option “Custom Logo Width” is just for the logo’s width, so I think it is a correct behavior for the theme. Instead, you can use the following CSS code to use the fixed width to the whole header content (Logo, description, and title).
.site-info { width: 500px; }
You can change the value of 500 to adjust the width as you like. Hope this works, just let me know if it works or not!
Forum: Themes and Templates
In reply to: [Coldbox] Header Settings with logoI am sorry but I don’t get what you mean. The behavior that horizontal menu compresses on the scroll is what I expect to work, it is not a bug or issue.
If you have a screenshot to describe what you say, it would be helpful.Forum: Themes and Templates
In reply to: [Coldbox] Decrease height of headerJust for your information: in the next version of the Coldbox theme, version 1.5.0, we will have a customizer option for this so you can easily change the padding around header via the customizer.
1.5.0 will be out as soon as the theme uploader has been fixed (Currently theme uploader is disabled due to some problems).
Forum: Themes and Templates
In reply to: [Coldbox] Menu background colourIn the next version, version 1.5.0, we will have a customizer option for this so you can easily change the background color via the customizer.
1.5.0 will be out as soon as the theme uploader has been fixed (Currently theme uploader is disabled due to some problems).
Forum: Themes and Templates
In reply to: [Coldbox] Menu background colourHi @wiverton,
You can use the following CSS to change the background color of it to #090909.
@media screen and (max-width: 767px) { #header-nav { background-color: #090909; } }