How can I disable homepage logo/graphic?

Discussion in 'Dzonia WordPress Theme' started by chunkysoup56, Dec 9, 2012.

  1. chunkysoup56

    chunkysoup56 New Member

    Joined:
    Sep 17, 2012
    Messages:
    7
    Likes Received:
    0
    Would like to disable this graphic in an effort to extend the navigation menu at the top and allow for more pages to fit if possible.....? Any suggestions?

    My website www.supercitybootcamp.com
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Open "header.php" file and remove code shown in the image

    [​IMG]


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

    Code:
    .menu_wrapper {
    float: left;
    }
     
  3. chunkysoup56

    chunkysoup56 New Member

    Joined:
    Sep 17, 2012
    Messages:
    7
    Likes Received:
    0
    Thanks! So after I do this, How could I add a new logo/header that
    Is full page-width above the slider? I am trying to replicate a look similar
    To this: www.crossfitfreedom.com
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    After following the previous post, Now add the code given below

    Code:
    <a href="Enter your link address"><img src="Enter your image address"/></a>
    Sending image for reference

    [​IMG]


    This will solve your issue.
     
  5. chunkysoup56

    chunkysoup56 New Member

    Joined:
    Sep 17, 2012
    Messages:
    7
    Likes Received:
    0
    Thanks so much for your assistance. This helped tremendously! Once last question, from the above mentioned code, what would I need to type in order to center the new header image that I'm trying to insert?
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

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

    Code:
    .header a img {
    margin-left: 15px;
    width: 97%;
    }
    Adjust its value as per your requirements.
     

Share This Page