Strict Standards: Declaration of description_walker::start_el() and warning [duplicate]

Not sure you’re asking for error with Walker_Nav_Menu::start_el() or Walker_Nav_Menu::start_lvl(). But you must specify all arguments as default in the Walker_Nav_Menu class in your derived classes. E.g: class description_walker extends Walker_Nav_Menu { /** * Starts the list before the elements are added. * * @see Walker::start_lvl() */ public function start_lvl(&$output, $depth = 0, $args = … Read more

WordPress Twenty Fourteen Theme Sidebar

The sidebar is created in two different places: The black strip is created from .site:before, check line 3910 of style.css #secondary actually displays the sidebar information, check line 3923 of style.css .featured-content, .site-content, .site-main .widecolumn provide left padding to the content area should you wish to dispose of that too.

Create search form in menu as in Twenty Fourteen theme

.animate() is the jQuery function you’re going to want to have a look at. Very handy. Here’s a working example for your particular question: http://jsfiddle.net/B8Yv9/ And a complete html workup: <!doctype html> <html> <head> <meta charset=”utf-8″> <script type=”text/javascript” src=”http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js”></script> <style> .search { width:300px; } .input-group { position:relative; float:right; } #btn-search { cursor:pointer; position:absolute; padding:3px 8px; … Read more