Header Logo

Discussion in 'Figero WordPress Theme' started by bizgirl, Aug 14, 2013.

  1. bizgirl

    bizgirl Member

    Joined:
    Feb 4, 2013
    Messages:
    145
    Likes Received:
    7
    Hi there,

    could you please tell me what coding changes would enable placement of my logo as shown on this site
    http://galesburglibrary.org/a/

    This is exactly the size and placement I would like for my site(s) but not sure how..

    Any assistance would be greatly appreciated as always.

    Kind regards,

    Maggie
     
  2. Gourav

    Gourav Support Staff

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

    Go to header.php present in your theme directory and follow the instruction as shown in image given below

    2013-08-16_1139.png


    Now,

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


    Code:
    .header-container .header .logo img{
    width:100%;
    }

    This will solve your issue.
     
  3. bizgirl

    bizgirl Member

    Joined:
    Feb 4, 2013
    Messages:
    145
    Likes Received:
    7
    Thank you Gourav. I hope you enjoyed the recent celebrations.

    Ive been able to do this but could you please tell me how to center the logo and nav menu as the logo is still on the left screen.

    Many thanks

    Maggie
     
  4. 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-container .header .logo img {
    margin-left: 30px;
    }
     
    @media only screen and (max-width: 767px){
    .header-container .header .logo img {
    margin-left: 10px;
    }
    }
    @media only screen and (max-width: 480px){
    .header-container .header .logo img {
    margin-left: 10px;
    }
     
    }
    Adjust its value as per your requirements.
     

Share This Page