Creating a second menu on Twenty Eleven aligned right from the first
Register a second sidebar. Call it in your child theme where TwentyEleven calls the first one. Let it float and adjust the CSS for the first menu.
Register a second sidebar. Call it in your child theme where TwentyEleven calls the first one. Let it float and adjust the CSS for the first menu.
I believe this is not a plugin, but a core feature for WordPress.com which is not the open source version of WordPress. While it does run on the same software, it has some features that are not available to download or to use on anywhere else but WordPress.com. You could however get the alternative, OpenID.
You can remove everything following the line /* =Responsive Structure ———————————————– */ up until in the style.css for Twenty Eleven /* =Print ———————————————– */ and it will get rid of all the media queries which are based on the size of the page.
Can you please add some of the code from your Loop.php file? The code you need to make a featured image show up is: <?php the_post_thumbnail( ‘medium’ );?> If you want the medium size picture to show up, use thumbnail, large or just ” (original size) to show other sizes. Just to be sure, have … Read more
$args = array( //post basics ‘post_status’ => ‘publish’, ‘post_type’ => ‘post’, ‘posts_per_page’ => 10 //order ‘orderby’ => ‘date’, ‘order’ => ‘desc’, //category query ‘tax_query’ => array( array( ‘taxonomy’ => ‘category’, ‘field’ => ‘slug’, ‘terms’ => ‘news’ //make this the slug of the category you want to use ) ) ); $posts = new WP_Query( $args … Read more
Can the Twenty Eleven theme have a Main Sidebar at all? Twenty Eleven Theme does display a sidebar on the homepage, but not on the single posts and individual pages as you can see from the demo of Twenty Eleven. If so, what am I doing wrong? What’s your website URL?
The / in header.png makes it look in the root directory. Try just doing background: url(header.png) #fff no-repeat;
TwentyEleven includes the featured image from header.php, rather than a template part like most themes. If you comment out line 92 that should remove it, e.g. <?php // The header image // Check if this is a post or page, if it has a thumbnail, and if it’s a big one if ( is_singular() && … Read more
@Sneek’s comment is your best bet. Otherwise, if you’re bent on splitting one menu, you have three choices: Use PHP to intercept the menu code and split it up before it gets output. This would work great in many regards, but it wouldn’t be knowledgeable as to where the “break” occurs, so you’d need to … Read more
Both Twenty Ten and Twenty Eleven are being maintained, since both are still bundled with core. However, Twenty Eleven has newer functionality, and a better overall codebase. I would recommend using Twenty Eleven. The only reason to use Twenty Ten, really, is that the codebase is considerably more simple. Note: when Twenty Twelve comes out, … Read more