Skip to:
Content
Pages
Categories
Search
Top
Bottom

(solved) No Header title and header search bar in my child theme

  • Hi, can someone please help me out as am just getting use to BP 1.5, i just created a child theme, every other things seems ok except that there is no header logo and search bar.

    the test site is: http://suchworld.co.cc/

    Login:demo pass: demo

    Thank for your help.

Viewing 3 replies - 1 through 3 (of 3 total)

  • @mercime
    Keymaster

    @mercime

    http://goo.gl/zUiUO – this URL has been disabled.

    There is no header image logo in bp-default theme. There is the site title link. Otherwise, what did you mean by “header logo”?

    Thanks @mercime, the URL is http://suchworld.co.cc/

    Exactly what i mean is the header site title and the header search bar.

    Regards


    @mercime
    Keymaster

    @mercime

    I see the site title and and the header search bar in page source code.

    The problem was the absolute positioning of the site title and search bar in your stylesheet

    replace:
    `#header #search-bar {
    left: 0;
    position: absolute;
    text-align: right;
    top: 90px;
    width: 100%;
    }`

    with
    `#header #search-bar {
    width: 100%;
    }`

    and work from there for the search

    Then you have
    `#header h1 {
    position: absolute;
    text-indent: -9999px;
    top: 90px;
    }`
    and below that
    `#header h1 {
    bottom: 12px;
    left: 15px;
    position: absolute;
    width: 44%;
    }`

    which you can remove and start from
    `#header h1 {
    width: 44%;
    }`

    then use Firefox with Firebug to test and copy styling if you wish.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘(solved) No Header title and header search bar in my child theme’ is closed to new replies.
Skip to toolbar