Dylan McCall
Forum Replies Created
-
Aha! That explains it for me. I was using a custom theme and at some point I had set my content width to 640. Changed it to 920 and that solved my problem – assuming I never try to show images larger than 920px across. Just in case, is there a way we can get Photon to ignore the content width variable?
Darn, I’m still seeing this with 2.0.2, exactly as described earlier. Is there something else I should do, or should the fix work right away?
Forum: Plugins
In reply to: [Tumblr Widget] [Plugin: Tumblr Widget] Unwanted line break after video postsSure, that makes sense ??
I just went ahead and added a CSS rule to hide the line break:
.tumblr_post.video br {
display: none;
}Thank you for the explanation!
Hey, any news on that refresh? I really look forward to being able to update Jetpack without extra work.
Forum: Fixing WordPress
In reply to: I want to make a page that appears like a postEek! Have you considered the potential for duplicate content penalties from Google here
Thanks, that’s a good point ??
I’ll add that to the reasons why I’d prefer a real link between post and page, rather than repeating the content here. I’m thinking the post permalink would be the page itself, so its position in the blog index (for example) is just like any post; either content with permalink or excerpt with “read more”.The problem I have with a lot of RSS for pages plugins is they do _everything_, and I’m really just aiming to do this for specific pages. I’m happy with a mix of things, though. Now you mention it, maybe I can squeeze some of their magic into my theme…
Okay, I went ahead and fixed this on my end by changing grunion-contact-form.php, line 26, from
wp_print_styles( 'grunion.css' );
towp_enqueue_style( 'grunion.css' );
So, the Contact page I linked to won’t have the problem I described. Here’s what its HTML looked like at the top, though, to be clear:
<link rel='stylesheet' id='grunion.css-css' href='https://www.dylanmccall.com/wp-content/plugins/grunion-contact-form/css/grunion.css?ver=3.3.1' type='text/css' media='all' /> <!DOCTYPE html> <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <title>Contact | Dylan McCall</title>
With the change I made, the doctype tag is back at the top of the file and the grunion.css link is in wp_footer.