zeaks
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Mantra] [Theme: Mantra] Removed widgets still showingThey could be static widgets. Sometimes themes have them added and are displayed when no widgets are active. Check your sidebar template.
Forum: Themes and Templates
In reply to: Twenty Eleven – Percentages and Width AdjustmentsMainmoose is right, you basically need to increase/decrease the margins equally. This is for the left sidebar layout, so don’t copy/paste it unless thats the layout you’re using.
.left-sidebar #primary { float: right; margin: 0 0 0 -30.4%; /* increased left margin 4% from -26.4% to -30.4% */ width: 100%; } .left-sidebar #content { margin: 0 7.6% 0 38%; /* increased right margin 4% from 34* to 38% */ width: 58.4%; } .left-sidebar #secondary { float: left; margin-left: 7.6%; margin-right: 0; margin-top: 20px; width: 22.8%; /* increased sidebar width 4% from 18.8% to 22.8% */ }I wrote a guide on how to change the sidebar width in Twenty Eleven, I don’t like spamming my site, but here it is http://zeaks.org/twenty-eleven-change-sidebar-width/
Make sure to use a child theme.
Forum: Themes and Templates
In reply to: TwentyEleven – Hide Page Title on specific pagesexactly what esmi said, use firebug to find the proper class, then do what he did to hide the site-title. http://zeaks.org/how-to-firebug/
Forum: Themes and Templates
In reply to: Replies to pagesYou can edit the page template and remove the link.
Or you can usually you can usually just hide the link with CSS.
Something like .page-template .edit-link { display: none; } that example wont work because I don’t know what classes your site usesForum: Themes and Templates
In reply to: error on single-post page after removing comment codingYou could just upload new copies of the files you made the edits to instead of uploading the theme again.
It’s always good to make backups of files when working on them.
Forum: Themes and Templates
In reply to: Website not showing fine on Mozillahmm, this time I loaded it, it’s not displaying properly until it’s refreshed, like you said.
You are using the theme extensions plugin, and it looks like you’ve added
.singular .entry-header, .singular .entry-content, .singular footer.entry-meta, .singular #comments-title {
margin: 0 auto;
width: 100px;
}
Should that width be 100% instead of px?Forum: Themes and Templates
In reply to: Website not showing fine on MozillaYour site looks the same to me in IE and Firefox
body {background: url(http://i766.photobucket.com/albums/xx310/jmaciula/FDS-Green-Spring-Yellow-Spots.jpg) repeat;}Works for me. Link your site if it’s still not working.
Forum: Themes and Templates
In reply to: twenty eleven theme customizationI suggest getting familiar with Firebug, it’s a great tool for working with CSS.
Once you do that, you can see what CSS is specific to each widget.
For example #secondary .widget-title {color: #ddd;} should allow you to apply a style to only the sidebar widget titles. You can get into widget specific classes as well.
Forum: Themes and Templates
In reply to: how to theme questionNo, jut pick one of those classes. Page-template-default would change all of the default page tempates, page-id-74 would only change that single page, home would change the index, page would change any page template.
Forum: Themes and Templates
In reply to: how to theme questionExactly, it’s really easy to use once you figure out the body classes. Firebug lets you view them all.
Forum: Themes and Templates
In reply to: [Basic Theme – Themify.me] Disable fluid layoutHave you looked at media-queries.css?
Forum: Themes and Templates
In reply to: how to theme questionIt does give the same possibilities as far as I know. For example, say I wanted to style the title of the default page template differently than the index blog posts title and other page templates
For Twenty Eleven I could use..
.page-template-default .entry-title {border: 1px solid #000;}
Then only on the default page template would that style be used. You can do the same for categories, page templates, page ids etc etc.
I used this method when creating different layouts for my twenty eleven theme. Using a body class I could totally change how the sidebars are positions, left and right, 2 left, 2 right, 1 left, 1 right.
Then when that body class is selected, it displayed the proper layout.Taking it a bit further I could even have a left and right sidebar on the index, then only 1 on any other page.
There’s lots of possibilities with CSS and body classes.
By using separate stylesheets, all you’re really doing is using different CSS for certain elements, which is exactly what body classes are for.
Forum: Themes and Templates
In reply to: how to theme questionYou can do this using the body class http://codex.wordpress.org/Function_Reference/body_class
Use firebug to examine the pages and find the proper body class for the pages you want to look different. Then use that body class along with your custom style.
Forum: Themes and Templates
In reply to: How to remove the footer text EvoLve 2.0.4DOH! older version, I can’t get a copy of the version you have, the current version is 2.0.6. Unless you want to share your copy, or upgrade, I can’t help >.<