Toshihiro Kanai
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Coldbox] タイトルの書体が異なるご投稿に気づかず返信が遅れてしまい申し訳ありません。
投稿ページの記事タイトルを本文のテキスト等と合わせたいとのことでしたら以下の CSS をテーマカスタマイザーの「追加 CSS」に追記してみてください。
body .title-box { font-family: "Open Sans","Hiragino Sans", "Noto Sans CJK JP", Arial, sans-serif !important; }
Open Sans
の部分は「Coldbox: 一般設定」の「フォント指定」に別のフォントを指定しているようでしたら、そちらのフォントに置き換えてください。Forum: Themes and Templates
In reply to: [Coldbox] カラムが気がついたら変更されているフォーラムにご投稿いただきありがとうございます。
こちらのフォーラムは Coldbox テーマ用のフォーラムとなっており、テーマ作者である私には通知が行くものの、他のフォーラム参加者さんはこの投稿が目に付きません。
見たところ、テーマよりはプラグインの可能性が高そうですので、以下の日本語フォーラムに投稿いただいた方が多くの方の目に触れ、解決に結びつきやすいものかと思います。
Forum: Themes and Templates
In reply to: [Coldbox] Site Description@jesslyndw I’m sorry, I missed a semicolon after
font-size: 16px
, so I think it will work if you place a semicolon likefont-size: 16px;
.Essentially the customizer is just applying some CSS based on user’s selection, so making it as customizer option won’t fix the issue. The issue was just I was missing a semicolon.
Forum: Themes and Templates
In reply to: [Coldbox] Site DescriptionHi!
While you can’t do it in the theme customizer, you can modify them easily with CSS below:
html body .site-description { /** Make it bold */ font-weight: 700; /* 300 is default */ /** Make it bigger */ font-size: 16px /* 15px is default */ /** Make it right-aligned */ text-align: right; justify-self: flex-end; flex: 1; }
Forum: Themes and Templates
In reply to: [Coldbox] Post thumbnailI think you need to understand what is WordPress thumbnail feature? It looks like you are asking for something that’s far from themes that handle appearance, but plugins because you may want to extend WordPress’s thumbnail feature.
The code I suggested above just uses native WordPress feature. I think you can expect better answers to your question on the general WordPress forum because I’m not an expert for WordPress usage or finding plugins for your needs.
Forum: Themes and Templates
In reply to: [Coldbox] Post thumbnailWhen you share a link somewhere, will the picture be picked up?
I’m sorry I don’t really get what that means. What is the link? Since it uses WordPress native thumbnail feature, you can do it as long as it supports.
To center it, make a HTML element so that you can style it easily like this:
<p class="thumbnail-caption"><?php the_post_thumbnail_caption() ?></p>
And use the CSS code below:
.thumbnail-caption { text-align: center; }
Forum: Themes and Templates
In reply to: [Coldbox] Post thumbnailYou can override
single.php
with your child theme. Add<?php the_post_thumbnail_caption() ?>
on line 110. You probably need to adjust some stylings too.- This reply was modified 2 years, 11 months ago by Toshihiro Kanai.
Forum: Themes and Templates
In reply to: [Coldbox] Sidebar is not working correctlyYes, that’s the expected behaviour when the sidebar has two columns.
Forum: Themes and Templates
In reply to: [Coldbox] Post-Meta class preventing tags from centeringHi!
I think that’s because
.post-meta
is set as flexbox container. What you need to do to center it is this really simple CSS code:body .post-meta { justify-content: center; }
Hope this fix your problem ??
- This reply was modified 2 years, 11 months ago by Toshihiro Kanai.
Forum: Themes and Templates
In reply to: [Coldbox] problem with automatic capitalizationHello there!
I’m happy that you liked my theme ??
While there isn’t any customizer options for the setting, you can remove the feature with this simple CSS code:
body .taxonomy-description { text-transform: none; }
Forum: Themes and Templates
In reply to: [Coldbox] Settings for Related PostsHi there!
That would require some coding skills. I’ll give you a brief explanation of where you need to edit the theme. If you need more help, you should ask your question at the general WordPress forum because it’s not specific to the theme.
So, at first, you need to have a child theme. Download at https://coldbox.miruc.co/ and set up.
In the child theme, create a directory named “parts”, and create a file “related-posts.php” under the directory. Copy the content found in https://raw.githubusercontent.com/mirucon/coldbox/c743194a56f020d8defcc5cf9e7d1c258febb08f/parts/related-posts.php and paste it to the file.
There are 3 points you need to edit to achieve the goal. These are around line 32, 60, and 80.
They are the queries used for [WP_Query](https://developer.www.ads-software.com/reference/classes/wp_query/parse_query/) class. And with
date_query
parameter, you can limit the created or updated date of posts. For the detail of how you usedate_query
, you need to find out by yourself (I have never used that before actually).Forum: Themes and Templates
In reply to: [Coldbox] Reduce H1/post title paddingHi!
I think the CSS selector you are trying to modify is correct, it’s just a problem with the specificity.
The CSS code below should work as you expected:
body .title-box-inner { padding-top: 40px; // 40px is default. Reduce the value for narrower gap. padding-right: 40px; padding-bottom: 40px; padding-left: 40px; } @media screen and (max-width: 640px) { body .title-box-inner { padding-top: 40px; // These are for mobile devices. padding-right: 10px; padding-bottom: 40px; padding-left: 10px; } }
It looks like your question is not very specific to the theme itself, but in general WordPress usage.
Since I’m not a professional of WordPress interfaces, I think your question is good to be asked on the general WordPress forum: https://www.ads-software.com/support/forum/how-to-and-troubleshooting/
Forum: Themes and Templates
In reply to: [Coldbox] Removing Google FontsI’m sorry for not recognizing this for long. You can select fonts ending with “(Local)” in the Global Font Selector in the customizer’s Global Settings to remove Google Fonts.
HI!
I think your previous widgets are now located in the “Inactive” tab. You can drag the items from the tab to the theme’s sidebar section to get them back.