Takao Utsumi
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [First] background image for titleHi,
1. I’d like to put titles of “pages” in the center. and
Please add the following code to Additional CSS.
.page .entry-title { text-align: center; }2. I’d like to put a background image behind titles of “full-width pages”.
It needs complicated customization. I’m sorry but I can’t tell you the method.
Forum: Themes and Templates
In reply to: [Graphy] Pictures left to the text are outside of the bodyI understood the issue. Please add the following code to Customize > Additional CSS.
.no-sidebar .alignleft { margin-left: 0; } .no-sidebar .alignright { margin-right: 0; }Forum: Themes and Templates
In reply to: [Graphy] Pictures left to the text are outside of the bodyHi,
I think your code work. How is it displayed?
Forum: Themes and Templates
In reply to: [Graphy] Page / Site title left-aligned?If I have a new page with headline (not the menu). What is the code to change this headline for the site?
Does it mean that you want to change the headline style?
If so, please change the code ofh1, h2, h3, h4, h5, h6.BTW: How can I use lowercase in a footer?
I think you can use lowercase in footer by default.
Can you give me more details?Is there a complete description available how to do all these things?
These questions are related to CSS, so I think googling is the best way.
Forum: Themes and Templates
In reply to: [Graphy] Page / Site title left-aligned?Hi Oliver,
Please add this code to Additional CSS.
.site-branding, .entry-header { text-align: left !important; }Forum: Themes and Templates
In reply to: [Graphy] Lowercase for menusHi Oliver,
Please add the following code.
.main-navigation div.menu > ul, .main-navigation ul.menu { text-transform: none; }Regards,
Takao UtsumiForum: Themes and Templates
In reply to: [Graphy] Sidebar on the bottomI checked your site and the sidebar appears on the right side.
When you see your site in small screen, the sidebar appears on the
bottom to keep the width of the main content.Regards,
Takao UtsumiForum: Themes and Templates
In reply to: [Graphy] get_the_author_link Not WorkingIn that case, you need to modify template-tags.php line:88 manually.
Before:
<a class="url fn n" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" title="<?php printf( esc_html__( 'View all posts by %s', 'graphy' ), get_the_author() );?>"><span class="author-name"><?php echo get_the_author();?></span></a>After:
<a class="url fn n" href="YOUR URL" title="<?php printf( esc_html__( 'View all posts by %s', 'graphy' ), get_the_author() );?>"><span class="author-name"><?php echo get_the_author();?></span></a>Forum: Themes and Templates
In reply to: [Graphy] French translation not working :(Well, please try to use Loco Translate plugin.
https://wordpress.org/plugins/loco-translate/
If it works, it may be a problem with your mo file.Anyway if i rename the file fr_Fr.mo then the translation starts magically working (until WordPrsse generare a graphy-fr_Fr.mo for sure).
This is normal behavior of WordPress.
Forum: Themes and Templates
In reply to: [Graphy] French translation not working :(I named it fr_FR.mo because graphy-fr_FR.mo doesn’t work and it’s OK.
That’s strange. Please try to upload the mo file as “../languages/themes/graphy-fr_FR.mo” again.
The problem is that few minutes/hours later the theme auto-generate a false French “graphy-fr_FR.mo” who overrides (taking priority) on my fr_FR.mo
This is normal behavior of WordPress and you can’t stop it.
Forum: Themes and Templates
In reply to: [Graphy] French translation not working :(And did you upload the mo file as “../languages/themes/graphy-fr_FR.mo”?
“../themes/graphy/languages/” folder doesn’t work in recent WordPress.Forum: Themes and Templates
In reply to: [Graphy] French translation not working :(Hi kajantek,
How did you translate the theme?
Forum: Themes and Templates
In reply to: [Graphy] get_the_author_link Not WorkingHello,
What does “the about page” means?
Forum: Themes and Templates
In reply to: [Graphy] Sidebar right to leftIn that case, please add the following code to your theme.
However, I don’t recommend this way to maintain readability..no-sidebar .content-area { width: auto; } .no-sidebar .post-full-summary .post-thumbnail { margin-left: 0; margin-right: 0; } .no-sidebar .alignleft { margin-left: 0; } .no-sidebar .alignright { margin-right: 0; }Forum: Themes and Templates
In reply to: [Graphy] Sidebar right to leftIf you do not use Sidebar (empty the widget area), the page will be a one-column design automatically.