Toshihiro Kanai
Forum Replies Created
-
Hi there!
You can use the following CSS to achieve that:
body.archive.category .title-description { display: none; }
Forum: Themes and Templates
In reply to: [Coldbox] Copying style of postHi there,
Thanks for using the theme!
Unfortunately, I am not familiar with that plugin and I am unable to help you with that.
The plugin looks similar to a website builder, it generates a completely different HTML from the theme. This means that it requires a lot of work to make it look closer to the theme, as I can’t simply reuse the same code.
Hi,
Thanks for your requests. However, I’m feeling like both of them are better to be done with plugins. I don’t like to have so many functionalities in the theme as it makes really had to maintain.
For the first one, I think what you actually need is a simple custom HTML widget plugin. There are so many existing plugins for that.
And you can use a plugin like this for the second request: https://docs.designsandcode.com/search-filter/
Its visual might differ from what the theme provides, but that is not really a big problem since CSS is not as hard as writing PHP.I think you should think of using existing plugins. It’s one of the biggest advantages of WordPress.
Forum: Themes and Templates
In reply to: [Coldbox] Change the appearance of the Search iconHi!
This piece of CSS code should help to satisfy your needs. Since I did not really test this with multiple browsers, you might have to fix some of the attributes if it is broken.
.search-toggle::after { content: "Search"; position: absolute; top:70%; left: calc(50% - 15px); }
- This reply was modified 5 years ago by Toshihiro Kanai.
Forum: Themes and Templates
In reply to: [Coldbox] “excerpt length” doesn’t apply to 2-byte lettersI believe I don’t change any behavior with “excerpt length” depending on the language or anything else. It does change the excerpt length to what you set in the customizer.
I suspect that some of your plugins are modifying the length because plugins have the ability to change it as well. (Maybe WP Multibyte Patch?)
I don’t think there is anything that I can do if I don’t know what plugin is actually causing the problem.
It would be helpful if you can search and list all the lines with
excerpt_length
(a filter name used to modify the length) from yourplugins
folder and send them to me.Forum: Themes and Templates
In reply to: [Coldbox] social button add requestThank you so much for your suggestion! I’d love to cover that in the next release.
Forum: Themes and Templates
In reply to: [Coldbox] Hard coded textsThanks for pointing that out, I’ll fix them in the next upcoming version.
Forum: Themes and Templates
In reply to: [Coldbox] search stopped workingThanks guys for reporting this issue! I’ve updated the theme to 1.8.0 which should fix it. Please let me know if the problem persists.
Forum: Themes and Templates
In reply to: [Coldbox] search stopped workingI guess that’s happening because of conflict with other plugins. I might be able to fix it once you find out what plugin is making the theme’s script inoperative.
Forum: Themes and Templates
In reply to: [Coldbox] I want to change all font(title and text)You can use the
Custom Font-Family Value
option in the Global Settings Tab on the theme customizer to change the font. There’s no need to write custom code.Forum: Themes and Templates
In reply to: [Coldbox] No sidebar on single pageI do have a plan to support such an option, but I cannot spend much time on this project because I am busy lately ??
In the meantime, you can use the following CSS code.If you want to show your sidebar on bottom (and the content is full width), use this:
body #main #wrapper > .container { display: block; } @media screen and (min-width: 961px) { body #main .sidebar-s1 { width: 100%; margin-top: 24px; } body #main .sidebar-inner { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; } body #main .sidebar .widget { width: calc(33.333% - 10px); margin: 5px; } body #main .grid-view .page, body #main .grid-view .post { width: 33.333%; } } body.right-sidebar-s1 .content { padding-right: 0; padding-left: 0; } body.right-sidebar-s1 .sidebar-s1{ margin-left: 0; } body.right-sidebar-s1 .content { padding: 0; }
If you don’t need the sidebar to show entirely, this is for you:
body #main #wrapper > .container { display: block; } body.right-sidebar-s1 .content { padding-right: 0; padding-left: 0; } body.right-sidebar-s1 .sidebar-s1{ display:none; }
For both customization, replace all
body
selector withbody.page-id-{PAGE_ID}
where you can insert your page ID in{PAGE_ID}
to enable it on only specific pages. For example if you have page ID11
that you want to hide the sidebar entirely, use this:body.page-id-11 #main #wrapper > .container { display: block; } body.page-id-11.right-sidebar-s1 .content { padding-right: 0; padding-left: 0; } body.page-id-11.right-sidebar-s1 .sidebar-s1{ display:none; }
Hope this works. Please let me know if it doesn’t work for you ??
Forum: Themes and Templates
In reply to: [Coldbox] SIdebar Menu FontsHi! You can use this CSS code to change the colors in sidebar widgets:
.widget a { color: #c54747; // Specify your color here }
- This reply was modified 5 years, 6 months ago by Toshihiro Kanai.
Forum: Themes and Templates
In reply to: [Coldbox] Change header image sizeAh okay, so with that way you’ll have the whole header taller. You can use the following:
.header { height: 200px // your desired value here. } .header-inner { height: 100%; }
It might be broken on somewhere (I can’t really test all possible situations for this particular customization), so you can fix that on your own if there’s any.
Forum: Themes and Templates
In reply to: [Coldbox] Change header image sizeHi there!
You can adjust the value of
max-width
for class.site-logo img
. Default is 230px, so you can make it more than that to show a larger image in there.For example:
`css
.site-logo img {
max-width: 480px; // Adjust this value as you need.
}
`
Forum: Reviews
In reply to: [Coldbox] Very clean and functional themeThank you so much ??