Removing search widget

  • Unknown's avatar

    Hi there!

    I know I have seen some of the same issue but I am trying to remove the search widget on my menu bar. I can’t even find the full CSS to make the suggesting of deleting the:
    #branding #searchform {
    display:none;

    in the code. Does anyone know how to remove the widget? It is not under pages, widgets or I guess I can’t even find where it is created to remove it.

    Any help is appreciated.
    Kristen

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    To find the full CSS, go to Appearance → Custom Design → CSS and look for the “View the original stylesheet” link in the CSS Settings section below the editor.

    Here’s the current stylesheet link for your site:
    https://s1.wp.com/wp-content/themes/pub/twentyeleven/style.css?m=1335848697g&minify=false

    You can also always find the stylesheets applied to any blog by viewing the page source and looking in the HTML head section.

    The search box in the header area of the Twenty Eleven theme is a built in part of the theme design, not a widget, and so that’s why you couldn’t find it on the widgets page. You can definitely hide it using the Custom Design upgrade though. Try adding this to your Appearance → Custom Design → CSS page:

    #branding #searchform {
    	display: none;
    }
    #branding #site-title {
    	margin-right: 0;
    }
  • The topic ‘Removing search widget’ is closed to new replies.