Twenty Eleven NOT valid

Validation is a tricky topic. It is good to have, but it is also theoretical thing in practical world. I had checked that URL with Unicorn. It explicitly says that HTML5 checking is not considered reliable and errors are mostly attribute related (which is verrry unlikely to be an issues). CSS errors seem to be … Read more

Modify Twentyeleven child theme CSS – How to change body font size?

The body font size in TwentyEleven is listed on line 316 in style.css body, input, textarea { color: #373737; font: 15px “Helvetica Neue”, Helvetica, Arial, sans-serif; font-weight: 300; line-height: 1.625; } Copy it over to your child theme style sheet and change the 15px to 20px. If you have already done this and it’s not … Read more

WordPress Child Theme – twentyeleven

your @import doesn’t look malformed. this is what i have on a live site that is running a twenty eleven child theme. /* Theme Name: A Twenty Eleven Child Theme Description: my child theme Author: helgatheviking Template: twentyeleven Version: 1.0 */ /* Reset browser defaults */ @import url(‘../twentyeleven/style.css’); so assuming that twentyeleven is in the … Read more

Auto Changing Text Case

I suspect that the problem is that you’re using the default, fallback navigation menu instead of a defined, custom navigation menu. (The “Home” link you’re seeing is the default home link output by wp_page_menu().) Go to Dashboard -> Appearance -> Menus, to define and apply a custom navigation menu. By applying your static front page … Read more

IE7 compatible twentyeleven

First of all you need to know that twenty eleven theme is in HTML5 and IE6, IE7 doesn’t supports HTML5 (http://www.quirksmode.org/dom/html5.html) Secondly if you are having a menu problem in IE 7, then there is a fix available which I found on some website #branding #searchform { display: none; position: absolute; right: 7.6%; text-align: right; … Read more

Twenty Eleven: Home Page, View full post of most recent post & Summary of the rest

after creating a child theme for Twenty Eleven, copy content.php from the Twenty Eleven theme into your child theme to edit it; find (line 35): <?php if ( is_search() ) : // Only display Excerpts for Search ?> change to: <?php if ( is_search() || is_paged() || $wp_query->current_post > 0 ) : // Only display … Read more

making my own “related pages” / “pages you might like” section

Function Reference/get the tags « WordPress Codex Class Reference/WP Query « WordPress Codex#Tag_Parameters add some code like this to content-single.php of your child theme of Twenty Eleven: $tags = array(); $posttags = get_the_tags(); if( $posttags ) : foreach( $posttags as $tag ) { $tags[] = $tag->term_id; } $related_query = new WP_Query( array(‘tag__in’ => $tags)); if( … Read more