zeaks
Forum Replies Created
-
Forum: Themes and Templates
In reply to: help trying to find themeIf you’re looking for a free template, best thing is to check out Appearance > Themes in your WordPress admin.
That template you linked is from http://info.template-help.com/help/sample-templates/ they do offer a few free WordPress sample templates, I didn’t see that one in the list though.
Forum: Themes and Templates
In reply to: What Kind Of Custom Form / Plugin Is This?They are at least using contact form 7 on their site, but I’m not sure if that is that particular form.
http://wordpress.org/extend/plugins/contact-form-7/They are also using http://www.awpcp.com/ which could be what that form is using.
Forum: Themes and Templates
In reply to: Restore Twenty Eleven to DefaultsYou should be making changes using a child theme then you wouldn’t need to keep reinstalling Twenty Eleven, and you won’t loose your changes when Twenty Eleven is updated. Plus it’s a whole lot easier to keep track of your custom changes in a child theme.
Codex info – http://codex.wordpress.org/Child_Themes
My own article on child themes http://zeaks.org/child-theme-basics/The default layout is the left content layout. Appearance > Theme Options
The default color scheme is whiteThe only options WordPress will remember is menus, widgets, layout and color scheme.
Here is what I used in my theme.
#access ul ul, #access2 ul ul { background: #333; -moz-border-radius-bottomleft: .5em; -moz-border-radius-bottomright: .5em; -webkit-border-bottom-left-radius: .5em; -webkit-border-bottom-right-radius: .5em; border-bottom-left-radius: .5em; border-bottom-right-radius: .5em; display: none; float: left; margin: 0; padding: 0 0 8px 0; top: 3.333em; left: 0; width: auto; z-index: 99999; }Forum: Themes and Templates
In reply to: remove Twentyeleven upgrade pageI might of misunderstood what you’re trying to do but, the first page you linked is using a different layout than the second site you linked.
Appearance > Theme Options and select the one column layout, the pages should look the same.
Forum: Themes and Templates
In reply to: how can I center page titles in 2011 theme.singular .entry-title { text-align:center; }Should do itI’m having the same issue, I figured since I’m new to Yoast it was a setting I missed somewhere
Forum: Hacks
In reply to: Remove Role CapabilitiesThis worked great, thanks alot
I agree with the OP. I spent the day testing out every plugin i could find, even combining two to do what I needed. I just had a few items I wanted to sell and didn’t need something with a thousand options. This is straight forward and works great for me with just the options I need.
Has this been fixed? It doesn’t seem to be working for me either. Anyone know of a simple alternative?
Using #breadcrumbs { display: none; } seems to work,if you only want it removed from the one page, add a body class to it. But knowing Weaver theme, there’s probably an option for breadcrumbs.
Forum: Themes and Templates
In reply to: Twenty Eleven and Full Width Size Page to Fit Whole ScreenThe items in your menus are just taking up too much space. You can rename some of them, or try using
#access a { padding: 0 1.1125em; }Forum: Themes and Templates
In reply to: Twenty Eleven – Percentages and Width AdjustmentsGlad you figured it out.
@tg1 Twenty Eleven has 3 layouts, left sidebar, right sidebar and no sidebar.
.left-sidebar and .right-sidebar are the body classes for those two layouts. You don’t want the left sidebar layout to use the same CSS as the right sidebar layout, which is why i added the classes.I probably should of explained that, I’ll update my post.
Forum: Themes and Templates
In reply to: where to find body_class functionEach page has more than 1 body class, couldn’t you just use one of those? There’s even page specific body classes. Here’s more info on the codex http://codex.wordpress.org/Function_Reference/body_class
Forum: Themes and Templates
In reply to: Removing white space around header – The Bootstrap 1.1.4#branding img { margin-bottom: -20px; }
seems to fix it in firebug