Takao Utsumi
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Graphy] German translationThe design of the older version is a little bit out of date now, so I updated it. Bigger font is one of the updates.
You can download the previous version here.
https://wordpress.org/themes/download/graphy.1.1.5.zipForum: Themes and Templates
In reply to: [Graphy] German translationIn this update, I changed the theme drastically. So there are no translations now.
Please wait until the translation is completed in GlotPress.
https://translate.wordpress.org/projects/wp-themes/graphy
I’m sorry for the inconvenience.Forum: Themes and Templates
In reply to: [Graphy] Social media widget from Jetpack not displayed properlyThank you for your kindness.
I have no plans to add the “old” look feature because the codes are completely renewed in this update.
So please add this code to the older version.
.widget_wpcom_social_media_icons_widget ul li:before { content: ''; }Forum: Themes and Templates
In reply to: [Graphy] Social media widget from Jetpack not displayed properlyThe design of the older version is a little bit out of date now, so I updated it.
Forum: Themes and Templates
In reply to: [Graphy] Social media widget from Jetpack not displayed properlyHi waltherl,
Please update Graphy. It is solved.
Forum: Themes and Templates
In reply to: [Graphy] wp_dequeue_script() Graphy navigationHi uschu60,
Please write your code. I will check it.
Forum: Themes and Templates
In reply to: [Graphy] Can't edit headerHi there,
Sorry for the late reply. I got a feedback about this issue by e-mail yesterday.
I fixed the issue and uploaded Graphy to WordPress.org.
After review, you’ll be able to update your theme.Regards,
Forum: Reviews
In reply to: [First] Good looking but with some issuesHi kazssym,
Thank you for your feedback. I will fix that issue in the next update.Forum: Themes and Templates
In reply to: [Graphy] Translations by WP-Translations.orgThanks 🙂
Forum: Themes and Templates
In reply to: [Graphy] Adjust header width, only one column in postsHi!
1. This is easy. Add this codes.
@media screen and (min-width: 960px) { .site-branding { max-width: 1040px; } } @media screen and (min-width: 1180px) { .site-branding { max-width: 1260px; } }2. This is a little difficult.
First, delete ‘<?php get_sidebar(); ?>’ from single.php.
And modify graphy_body_classes in function.php from
‘ if ( is_active_sidebar( ‘sidebar’ ) && ! is_page_template(‘nosidebar.php’) ) {
$classes[] = ‘has-sidebar’;
} else {
$classes[] = ‘no-sidebar’;
}’
to
‘ if ( is_active_sidebar( ‘sidebar’ ) && ! is_page_template(‘nosidebar.php’) && ! is_single() ) {
$classes[] = ‘has-sidebar’;
} else {
$classes[] = ‘no-sidebar’;
}’Forum: Themes and Templates
In reply to: [Graphy] Translations by WP-Translations.orgThanks 🙂
Forum: Themes and Templates
In reply to: [Graphy] Pages, not posts on HPPlease take a look at this document.
https://codex.wordpress.org/Creating_a_Static_Front_PageForum: Themes and Templates
In reply to: [Graphy] Margins?The gallery feature enables that.
http://codex.wordpress.org/Gallery_ShortcodeAnd if you install Jetpack, you can create galleries in various styles.
http://jetpack.me/support/tiled-galleries/Forum: Themes and Templates
In reply to: [Graphy] Removing Page Title & White Space Left By itHi,
I checked this page.
http://www.lletycynin.co.uk/leisure-club/If you want to remove the space, remove
margin-bottomof.entry-header.But to my eyes, using the page title is better. So I recommend using the page title.
Forum: Themes and Templates
In reply to: [Graphy] Child themeHi there,
@mongieofwales – There isn’t something special to consider, just create a child theme 🙂
@jose – You’re right.