Centre Logo and Menu Bar on Figero Pro Theme

Discussion in 'Figero WordPress Theme' started by joswebsitedesign, Aug 27, 2013.

  1. joswebsitedesign

    joswebsitedesign Guest

    Joined:
    Jul 1, 2013
    Messages:
    79
    Likes Received:
    3
    Location:
    Adelaide, SA, Australia
    Hello

    I would like to centre my logo at the top of the home page and then also centre the menu bar underneath the logo.

    Can you please advise how to do this.

    Website address: www.joswebsitedesign.com

    Cheers,
    Jo
     
  2. 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: 220px;
    }
     
    @media only screen and (max-width: 767px){
    .header-container .header .logo img {
    margin-left: 30px;
    }
    }
    @media only screen and (max-width: 480px){
    .header-container .header .logo img {
    margin-left: 10px;
    }
     
    }
     
    #menu .ddsmoothmenu{
    float:none;
    margin-right:200px;
    }
    
    Adjust its value as per your requirements.
     

Share This Page