zeaks
Forum Replies Created
-
I’ve had the same problem in the past, which is why I’ve never used the mobile theme. I can’t get it to pick up the default menu in Twenty Eleven or Twenty Twelve, lists pages instead.
Could you post the results to whatever was wrong
Forum: Themes and Templates
In reply to: Having difficulty with the navigation bar background colorYeah as srikat said, FTP or cPanel editor will do it. If you don’t have access to them, you can try adding !important to the end of each line as a last resort.
Example:
#branding #access, #colophon #access-footer { background: #333399 !important; /* Show a solid color for older browsers */ background: -moz-linear-gradient(#333399, #333399) !important; etc etcForum: Themes and Templates
In reply to: Two bordersThe border on the left of the sidebar is added to the wrong class, try this.
Change
.widget-area ul { border-left: 1px solid #CCCCCC; }To this
.widget-area ul { border-left: none; }Add
#sidebar { border-left: 1px solid #CCCCCC; }Then to remove the border above your posts use
.hentry { border-top: medium none; }Forum: Themes and Templates
In reply to: Having difficulty with the navigation bar background colorDid you change it in style.css? It looks like the http://www.avidamy.com/wp-content/themes/catch-box/colors/blue.css stylesheet is the one overriding it, try changing it there.
Forum: Themes and Templates
In reply to: Custom CSS for parent pages and childrenUsually themes have a body class for each page http://codex.wordpress.org/Function_Reference/body_class and conditional CSS can be used to target specific pages or types of pages. I don’t see any body classes for your theme though.
I’m not familiar with that particular theme, but this http://zeaks.org/tutorials/how-to-add-a-logo-to-twenty-eleven-theme/ explains how to add a logo to Twenty Eleven theme.
The same method should work for any theme, just change the #site-title class to whatever your theme is using and adjust it accordingly.
You’ll basically be adding a background image (your logo) to the site title, then hiding the title.
Forum: Themes and Templates
In reply to: using multiple styles for the site-title and descriptionYou have the right idea. Using conditional CSS for the static page should override the dynamic pages.
For example, what you’ve used
.home h1.site-title a { color: #fff; <-- white font-size: normal; }Should override
h1.site-title a { color: #000; <-- black font-size: 30px; }But, if you were to add something like a 1 px border around the site title on your dynamic pages
h1.site-title a { border: 1px solid #000; }it would display on your static page because there isn’t CSS telling it not to.
In order to not have it display on your static page, you would need to tell it not to like this.
.home h1.site-title a { border: none; }This border is just an example, but if you tell it to show something on the dynamic page that is not included in the static page CSS, then it will show on the static.
If this doesn’t help, link your site and let us know what you want to do, and I’ll take a look.
Forum: Plugins
In reply to: [CommentLuv] Commentluv Conflict with bbPress EditorJust gave you a description, I don’t use it anymore, just letting you know.
Forum: Themes and Templates
In reply to: [Twenty Twelve] Twenty Twelve Theme: Width in IE8Yeah, your CSS is commented out. Before saying something doesn’t work, make sure you’ve done it correctly. Nothing I posted would “break” your Firefox.
Forum: Themes and Templates
In reply to: [Twenty Twelve] Twenty Twelve Theme: Width in IE8In your CSS just add .ie before the normal class.
For example say I wanted to increase the site width, my normal css might look like@media screen and (min-width: 960px) { .site { max-width: 1000px; } }then for IE 7 and 8 I would use
.ie .site { max-width: 1000px; }In your case .ie body .site { etc etc
.ie is a built in class for Twenty Twelve theme. I wrote a post that explains this in more detail near the bottom http://zeaks.org/tutorials/twenty-twelve-theme-three-column-layout/
Forum: Themes and Templates
In reply to: [Twenty Twelve] Twenty Twelve Theme: Width in IE8You can use the IE conditional .ie to target IE 7 and IE8
Your CSS is probably within @media queries, ie 7 and 8 doesn’t understand them.
Forum: Themes and Templates
In reply to: Navigation BarTry this to space the links.
#nav_in li { padding-right: 36px; }You might also want to add this so the first item doesn’t have a a 72px right padding.
#nav_in li:first-child a { padding-right: 0; }This should fix the menubar image from being slightly too low in Firefox
#nav_in { margin: -1px auto; }http://bbpress.org/about/gpl/ I’m no license expert, but I think you can do whatever you want besides take credit.
Forum: Themes and Templates
In reply to: Add second menu to Twenty TwelveI’m, not sure what exactly you want to do with the js file. The post I linked creates a second menu that works in mobile, de-queues the original js file and queues the new js file with the second menu code added to it, and you just said you know how to style it separately.
Forum: Themes and Templates
In reply to: Add second menu to Twenty TwelveYou can use the menu_id parameter http://codex.wordpress.org/Function_Reference/wp_nav_menu then style it using whatever Id you’ve used.
The menu will also have a unique class depending on the name of the active menu. Check it with firebug.