zeaks
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Twenty Elevel – 3 ColumnI played around with this a bit, it’s not perfect, but the sidebars don’t seem to mess up when the browser is resized.
#page { max-width: 989px;} #primary { float: left; margin: 0 -26.4% 0 0; width: 100%; } #content { margin: 0 34% 0 24.6%; width: 45.4%; } #secondary { float: right; margin-right: 5.6%; width: 20.8%; } #tertiary { position: relative; float: left; width: 18.8%; margin-left: -70%; }I increased the page width, but it’s pretty easy to adjust it
Forum: Themes and Templates
In reply to: Free Twenty Eleven child themeI just updated this. 8 new color schemes, 3 new layouts, secondary menu area, Google font selector for titles, tabbed content shortcode and more.
Forum: Themes and Templates
In reply to: Twenty Eleven – reducing size of headerThere’s lots of posts on how to do this, but I created a plugin that will reduce the header image size, replace the default headers, add a sidebar to post view pages and add a Theme Options link to the admin bar. Just install, no configuration.
http://zeaks.org/downloads/?did=32
My first try at making a plugin, but it seems to work ok.
GPL licensedForum: Themes and Templates
In reply to: Twenty Eleven single page classFigured this out .mynew-class.singular #content
Forum: Themes and Templates
In reply to: Twenty Eleven single page classStill having this issue. I created another layout, basically it’s the default layout but narrow. Looks fine unless I use the default page template, then the content stays the width of the post view page/index/everything else.
I’ve tried .singular.page #content and a hundred other classes I found with firebug, but can’t figure it out.
Forum: Themes and Templates
In reply to: Page Background Color & ImageDo you have a link to your page?
Forum: Themes and Templates
In reply to: Twenty Eleven second menu problemFor anyone else that might want to do this, change the header code above with
<?php // Add a top menu wp_nav_menu( array('container_class' => 'menu-top', 'theme_location' => 'secondary', 'fallback_cb' => '') ); ?> </nav><!-- #access2 --> <?phpForum: Themes and Templates
In reply to: Page Background Color & ImageIn Twenty Eleven you can remove and clear the background in appearance > background. Once you do that, it will use whatever have set in your CSS.
If you’re creating a child theme, it will use whatever background image/color you have set in the CSS first, and only change if you tell it to.
If you are set on overriding it, maybe adding !important to your css will do it. Not sure if that’s the proper way though.
Forum: Themes and Templates
In reply to: Remover border from images in twenty elevenThis should remove them.
img[class*="align"], img[class*="wp-image-"], #content .gallery .gallery-icon img {border: none;}I think you can remove that by using something like
#page { margin-top: 5px !important; }Forum: Themes and Templates
In reply to: Increase Sidebar WidthYou’ll probably need to adjust the width of the content then increase the width of the sidebar. Looking at your css (I couldnt get it to look right with firebug, I think the sidebar background image width was throwing it off)these are what you would need to edit.
#left-div {width: 693px;} .home-post-wrap { width: 693px;} #sidebar { width: 222px;} .sidebar-box { width: 212px;}Forum: Themes and Templates
In reply to: Twenty Eleven single page classWhat I did was create a new layout. It’s a right sidebar but wider sidebar. Looks fine unless I use the single column page template, then the content stays the width it’s set for the main page.
The new layout uses a class called .wide-sidebar so, I’ve tried .wide-sidebar #page #content, which works but that also changes everything else.
This is the css I’m using without any changes from twenty elevens original other than adding the new class.
.wide-sidebar #primary { float: right; margin: 0 0 0 -26.4%; width: 100%; } .wide-sidebar #content { margin: 0 7.6% 0 34%; width: 58.4%; } .wide-sidebar #secondary { float: left; margin-left: 7.6%; margin-right: 0; width: 18.8%; }Forum: Themes and Templates
In reply to: Twenty Eleven extra widget areaThanks, i’ll try that.
Forum: Themes and Templates
In reply to: Twenty Eleven extra widget areaThanks for the info.
If I could even rename the first default widget area to something else, that would be fine.
Or
Is there anyway to remove the function, then re-add it including the extra widget area, then position it that way in the child theme?
Forum: Themes and Templates
In reply to: Twenty Eleven extra widget area@esmi sorry, I am using a child theme, not editing the parent theme.