zeaks
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Eleven] Changing width of sidebarI wrote a post about this http://zeaks.org/tutorials/twenty-eleven-sidebar-width-explained-and-2-bonus-layouts/ use that in conjunction with the sidebar page template bodyclass if you only want to target the sidebar page template.
Forum: Themes and Templates
In reply to: [Twenty Twelve] Image attachment page missing sidebar?Totally different issue and theme, you should start a new topic
Forum: Themes and Templates
In reply to: Add second menu to Twenty TwelveI don’t remember what I did, but I wrote a tutorial on adding a second menu which has been updated for the newest twenty Twelve version http://zeaks.org/tutorials/add-second-menu-to-twenty-twelve-theme/
Forum: Themes and Templates
In reply to: [Twenty Twelve] Image attachment page missing sidebar?In the first version the attachment page content was only 65% or so, basically the same layout as the main pages, but the sidebar was missing.
I don’t know if it was intentional or not, I didn’t see a reason to use only 65% of the page unless the sidebar was shown, that’s why i posted this.
In the newest version it’s showing 100% width no sidebar and looks fine.
Forum: Themes and Templates
In reply to: [Twenty Twelve] [Theme: Twenty Twelve] Footer WidgetsWithout seeing it and viewing your code, it’s impossible to tell what was wrong. It could be something as simple as a missing close tag.
I created a post about this last night, try it out, if you’re having trouble feel free to leave a comment. http://zeaks.org/tutorials/twenty-twelve-footer-widgets-tutorial/
Forum: Themes and Templates
In reply to: [Twenty Twelve] Remove Category, date and SearchWell you should create a child theme and add it to the style.css but if not, add it at the bottom of your theme style.css. If you’re using Jetpack plugin, it has a CSS module which is great for adding CSS like this to your theme.
Forum: Themes and Templates
In reply to: [Twenty Twelve] [Theme: Twenty Twelve] Footer WidgetsI don’t see anything wrong with it so I think you mean how there’s more than 1 { }
Anything inside the @media screen and (min-width: 600px) { } targets devices or browsers greater than 600px, it needs to have a starting { and an ending } with regular CSS in between so yeah you’ll see double closing brackets. (if that’s what you mean)
@media screen and (min-width: 600px) { <- opening for @media .widget { <- opening bracket for widget class margin-right: 3.7%; width: 30.85%; } <- closing bracket for widget class } <- closing bracket for @mediaTwenty Twelve is a mobile first theme, meaning it was designed for mobile devices first, then using media queries designed for desktops and larger screens, so there’s a lot of @media calls.
The .ie conditional classes are not within @media because IE7 and 8 don’t understand media queries.
Forum: Themes and Templates
In reply to: [Twenty Twelve] Remove Category, date and SearchThat looks like Twenty Eleven theme but try using this.
.cat-links, .entry-meta, .only-search.with-image { display: none; }Forum: Everything else WordPress
In reply to: Theme Trac questionThanks, I’ll try doing that
Forum: Themes and Templates
In reply to: Change widget area order in child themeThat’s a totally different topic, see this post and remove the display: none part from the CSS. http://wordpress.org/support/topic/theme-twenty-twelve-footer-widgets?replies=33#post-3560921
Forum: Themes and Templates
In reply to: Change widget area order in child themeI did figure this out eventually. When the widget areas are re-ordered it prevents the theme from displaying a 1 column layout when no widget areas are active. To get around this I just removed the Twenty Twelve body classes, then re-added them in my child theme, adding the new widget ID’s.
function remove_twentytwelve_body_classes(){ remove_filter('body_class', 'twentytwelve_body_class'); } add_action('init', 'remove_twentytwelve_body_classes', 20,2);then changed the body class function which I added to my own theme
if ( ! is_active_sidebar( 'sidebar-4' ) && ! is_active_sidebar ( 'sidebar-5' ) || is_page_template( 'page-templates/full-width.php' ) ) $classes[] = 'full-width';Or whatever the sidebar Ids were.
I’m seeing this issue as well
Forum: Themes and Templates
In reply to: Search Bar in Top RightIn your style.css search for
header[role="banner"] #s
Add height:35px; to it, looks ok in firebug doing that.Forum: Your WordPress
In reply to: Twenty Plus – free child themehmm, I’ve never used press this, I just tried it, but I don’t see how the excerpts are created.
Feel free to use the contact link on my website and explain to me how you are creating your posts.Forum: Your WordPress
In reply to: Twenty Plus – free child themeIf it’s set to excerpts, it takes a certain number of characters from the post and displays it. If you want to use manual excerpts, set the post option to full posts and it will display as Twenty Twelve would.