How to move menus when my logo long n width?

Discussion in 'GoldenEagle WordPress Theme' started by dawnthen, Dec 5, 2013.

  1. dawnthen

    dawnthen New Member

    Joined:
    Dec 5, 2013
    Messages:
    2
    Likes Received:
    0
    Hi , when i uploaded my logo, its abit wider therefore it overlay on top of my menus.
    How do i adjust the layout of my menus whenever i have different size logos?

    Also, how do i remove the search box on top left corner of theme?

    http://www.thehillford-newlaunch.com/

    Thanks in advance!
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,
    1.Go to header.php present in your theme directory and follow the instruction as shown in image given below

    2013-12-05_1830.png


    2.

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .top-search{
    display:none;
    }
     
  3. dawnthen

    dawnthen New Member

    Joined:
    Dec 5, 2013
    Messages:
    2
    Likes Received:
    0
    Thank you !

    And how do i move my menus down ( just above my slider? )
    When my logo is too width ?
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .menu_wrapper {
    margin-top: 20px;
    }
    .slider-wrapper {
    margin-top: 0px;
    }
    #example {
    margin-top: -15px;
    }
    
    You can adjust the value of "margin-top" as per your requirement.
    This will solve your issue.
     

Share This Page