John Parris
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Editor] Editor-Style.cssI can see what you mean. I imagine it could be bothersome. They really encourage themes to have the same sizes in the editor and on the front end, so I don’t think we’ll change that. Do you use the full screen editor? That might help somewhat. That is, if you haven’t already customized your editor styles already. 🙂
Forum: Themes and Templates
In reply to: [Editor] Editor-Style.cssThe font sizes in the editing screen match the font size of the text when viewed on the website. Is this what it looks like to you?
Forum: Themes and Templates
In reply to: [Editor] custom homepage with custom stylingHi Rinni,
home.php is a reserved filename in WordPress that will always be used for the blog page. If you rename it to something like homepage.php you should be fine. You’ll need to reassign any pages to the template after it’s renamed.
+1 on the menu position.
Also +1 on using an icon that fits the visual design. Even Jetpack plays nice in this regard. 😉
Forum: Themes and Templates
In reply to: [Editor] Radio Buttons Not Appearing (Chrome Only)The fix we submitted will fix Safari too. Hopefully it’ll be approved by the review team soon.
Forum: Fixing WordPress
In reply to: Media library blank in 4.0Hi, trying visiting Settings > Permalinks in your dashboard, then trying to reconnect Jetpack to see if it works.
Forum: Themes and Templates
In reply to: [Editor] Groups privacy settingHey there,
This is a small bug in Editor that’s preventing the radio buttons from showing up. We’ve already submitted a fix for this and it will be available as soon as it’s approved by the theme review team. Apologies for the inconvenience.
Forum: Themes and Templates
In reply to: [Editor] Radio Buttons Not Appearing (Chrome Only)Hi,
Thanks for reporting this. It’s a small bug that’s causing this. We’re pushing an update now and it’ll be available as soon as it’s approved by the theme review team. Apologies for the inconvenience.
Forum: Themes and Templates
In reply to: [Editor] Theme only partially translatedGlad to hear you figured it out! 🙂
We’ll double check the language files and if they’re complete we’ll add them to the next update so when you update they’ll still be there.
Forum: Themes and Templates
In reply to: [Editor] Theme only partially translatedI just tested it with a child theme and it works there too. I’m using Editor version 1.0.7 direct from here.
Does it work for you if you copy your translation files into the parent Editor languages folder and activate Editor? That would help determine if it’s an issue with your child theme.
Forum: Themes and Templates
In reply to: [Editor] Theme only partially translatedHi,
I downloaded your translation and copied it into the theme, defined my language as de_DE by adding this line in the WordPress config file wp-config.php:
define ('WPLANG', 'de_DE');and I get the translated strings. See this screenshot.
Did you define your language in the wp-config.php file?
Forum: Themes and Templates
In reply to: [Editor] changing header padding for smaller screenThe .admin-bar version is what is used when you’re logged in and the black admin bar that WordPress automatically adds is showing. You can use it to push the rest of the page down so things like the logo don’t get hidden underneath.
Forum: Themes and Templates
In reply to: [Editor] changing header padding for smaller screenOn an iPhone-sized screen, this is what I see now.
I don’t quite understand why you’re trying to make less padding above the logo on small screens? As you can see, the menu button and the logo are clashing. And in your screenshot the logo is already under the admin bar (which I can’t really test since I can’t login to your site).
Are we talking about the same thing?
Forum: Themes and Templates
In reply to: [Editor] changing header padding for smaller screenCan you post a screenshot of what you’re seeing?
Forum: Themes and Templates
In reply to: [Editor] changing header padding for smaller screenThis piece of CSS isn’t valid, and could be causing the problem:
.site-header @media (max-width: 768px) { .site-header { margin-left: 0; padding: 0px 5% 25px 5%;} }Remove the top .site-header from it, and make it like this and try:
@media (max-width: 768px) { .site-header { margin-left: 0; padding: 0px 5% 25px 5%; } }