Center Menu

Discussion in 'Woodpecker WordPress Business Theme' started by rogerschnur, Feb 23, 2014.

  1. rogerschnur

    rogerschnur Member

    Joined:
    Mar 19, 2013
    Messages:
    216
    Likes Received:
    14
    Can you please advise how I can center the menu. I tried this but it didn't work:

    .nav-wrapper {
    text-align: center;
    }
     
  2. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .nav-wrapper ul {
    text-align: center;
    float: none;
    }
    .nav-wrapper .sf-menu > li {
    display: inline-block;
    float: none;
    } 
    This will solve your issue.
     
  3. rogerschnur

    rogerschnur Member

    Joined:
    Mar 19, 2013
    Messages:
    216
    Likes Received:
    14
    And how can I get the text in the slider to appear higher instead of centered?
     
  4. rogerschnur

    rogerschnur Member

    Joined:
    Mar 19, 2013
    Messages:
    216
    Likes Received:
    14
    Is there also a way to get the logo centered?
     
  5. Piyush

    Piyush Support Staff

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

    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .slider-caption-container {
    margin-top: 10px;
    } 
    You can change the value of "margin-top" as per your requirement.
    This will solve your issue.
     
  6. Piyush

    Piyush Support Staff

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

    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    @media screen and (min-width: 767px){
    #logo {
    float: right;
    margin-right: -100px;
    }} 
    This will solve your issue.
     
  7. rogerschnur

    rogerschnur Member

    Joined:
    Mar 19, 2013
    Messages:
    216
    Likes Received:
    14
  8. Piyush

    Piyush Support Staff

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

Share This Page