Remove Search Bar ( I did do a search on this topic, but)

  • Unknown's avatar

    Hi, sorry to ask the same question. After going through some results, the best answer I found was “It’s a part of the theme.” But I remember asking very specific things on this forum (how to remove this, or that) and have been helped with css code to put in, or to alter in order to change aspects of a theme. So, I’m hoping I can do it for my blog:

    http://agshoots.com

    I do have Custom CSS. Here’s what appears to be the code for the search box:

    #searchbox {
    background: url(img/searchbox.gif) no-repeat;
    width:209px;
    height:23px;
    display:block;
    float:right;
    margin-top:4px;
    margin-right:10px !important;
    margin-right:5px;
    padding:2px;
    }
    #searchbox .textfield {
    background:none;
    border:0px;
    width:185px;
    float:left;
    margin-right:2px;
    padding-left:2px;
    }
    #searchbox .button {
    background:none;
    border:0px;
    width:18px;
    height:18px;
    cursor:pointer;
    float:left;
    margin-top:1px;
    }
    #searchbox .searchtip {
    color:#999;
    }
    /* navigation END */

    /* submenu START */
    #menus li ul {
    display:none;
    background:#F4F5F7;
    border:solid #A6A6A6;
    border-width:1px 1px 0;
    line-height:0;
    position:absolute;
    z-index:1;

    I’m tempted to just delete that part of the code, but don’t know what would happen. If anyone could help with this, that would be really, really appreciated. Thanks guys.

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

  • Unknown's avatar

    Never tamper with the original CSS of the theme. Just add what you wish to modify. See here for more:
    http://csswiz.wordpress.com/2009/10/15/if-you-have-the-wp-com-css-upgrade/

    To remove the searchbox in iNove, add this:

    #searchbox {
    display:none;
    }
  • Unknown's avatar

    Awesome, thanks so much pana!

  • The topic ‘Remove Search Bar ( I did do a search on this topic, but)’ is closed to new replies.