zeaks
Forum Replies Created
-
Forum: Themes and Templates
In reply to: No style.css stylesheetMake sure the theme is not in a double folder EX: wp-contents/themes/lite-press/lite-press/
I’ve used this plugin in the past http://wordpress.org/extend/plugins/widget-saver/
But, if you set your widgets and header up for a theme, then try out a new one and don’t like it, if you go back to the old theme, your widgets and everything should stay the same.
Forum: Themes and Templates
In reply to: Target tags and date css Twenty ElevenThanks, just wanted to make sure I wasn’t missing something obvious
Forum: Your WordPress
In reply to: My first client websiteI suck at reviews but I think it looks great. It’s easy to read and navigate,nice choice of colors and fonts. I love the front page template.
The rocking horse content threw me off a bit but that’s nothing to do with the design.
Forum: Themes and Templates
In reply to: CSS Edits in Child Theme Not RecognizedSince your settings are also being reverted this probably isn’t the issue but it’s worth checking.
If you’re using a caching plugin or something like cloudflare you might not see the changes.Forum: Themes and Templates
In reply to: De-linking ThemeThis is why it’s a good idea to create a child theme http://codex.wordpress.org/Child_Themes
You have two choices, go through your theme and copy all of your changes to a child theme if you can find them all.
The other is to rename Twenty Eleven to your own them name so it doesn’t get overwritten, that defeats the purpose of upgrading Twenty Eleven though.No it isn’t, but the issue wasn’t Jetpack at all, turned out to be an issue with the theme and how it displayed iframes.
Forum: Themes and Templates
In reply to: Add second menu to Twenty TwelveSolved this, I didn’t properly queue the new js file.
Forum: Themes and Templates
In reply to: Add second menu to Twenty TwelveSort of have this working. The new menu (mobile) refused to open, so I figured I could override the /js/navigation.js with one in a child theme. I guess that doesn’t work unless I dequeue the original first.
So I did that, then copied the original navigation.js to the child theme, and added duplicate code to it changing the document.getElementById( ‘site-navigation’ ) to “lower-navigation” (maybe not the best way to do it, but I don’t know javascript very well)
It did dequeue the script and load my new one, but it still wasn’t working and now both menus were stuck closed.
So as a test, I removed my dequeue/enqueue code and added my new javascript code directly to the parent theme file and both menus worked! This is useless though as I want the changes to be made to the child theme.Could someone look at my code and tell me if I’ve done something wrong? I’ve posted all of my changes from header, functions and navigation.js here http://pastebin.com/0BZteS3c
Forum: Themes and Templates
In reply to: Twenty Twelve child theme issueThanks. I think I have it all sorted out. It’s just a bit different than Twenty Eleven, once I was familiar with the new classes and the way the theme worked it started to come together.
Forum: Themes and Templates
In reply to: [Twenty twelve Theme ] How to highlight author comment ?The class .bypostauthor should work
EX:
.bypostauthor {background-color:red;}Forum: Themes and Templates
In reply to: Remove White Space from Twenty Twelve Home PageTry
body .site { margin-top: 0; }Issue with the theme was fixed, this is no longer needed.
Forum: Themes and Templates
In reply to: Restore Twenty Eleven to DefaultsThe default page template for Twenty Eleven doesn’t have a sidebar. Click edit on the page, and on the right where it says “Template” select “Sidebar Template”
Also, Twenty eleven does not display a sidebar on single post pages. Here’s an article on how add one http://zeaks.org/code-snippets/add-sidebar-to-post-view-in-twenty-eleven-theme/
And not to keep linking my site, but I created a child theme for Twenty Eleven that does this already, it also adds a ton of other features you might find useful. http://zeaks.org/child-themes/nomnom-twenty-eleven-child-theme/
Forum: Themes and Templates
In reply to: Restore Twenty Eleven to DefaultsWhen I looked at your site a few minutes ago, I checked the CSS for the sidebar and content, your primary had a margin of 0, and that is not the default. Other CSS had changes as well.
Best thing to do is delete the Twenty Eleven install, and install a new copy (make sure you turn off any cache plugins) create a child theme, and start making your changes from that.