Center menu bar & logo

Discussion in 'RoadFighter WordPress Theme' started by geovisioncnc, Mar 13, 2015.

Thread Status:
Not open for further replies.
  1. geovisioncnc

    geovisioncnc New Member

    Joined:
    Mar 11, 2015
    Messages:
    19
    Likes Received:
    0
    Hi again! I would like to center Logo and Menu bar on every pages. Do you know how to do ?
    I would also like to remove the Top Right Contact details or if possible use it for my socials icon...
    Can you help me please, Thanks :)
     
  2. sameerwalkar

    sameerwalkar Guest

    Hi,

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

    Code:
    @media only screen and (min-width: 768px) {
    .header_wrapper .logo img {
      margin-left: 88%;
    }
    .header_wrapper .call-us{
    display:none;
    }}
    Regards,
    Sameer
     
  3. geovisioncnc

    geovisioncnc New Member

    Joined:
    Mar 11, 2015
    Messages:
    19
    Likes Received:
    0
    Thanks it works for the logo but not for the menu bar.
     
  4. sameerwalkar

    sameerwalkar Guest

    Hi,

    Kindly Replace the previously given code with this updated code provide:

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

    Code:
    @media only screen and (min-width: 768px) {
    .header_wrapper .logo img {
      margin-left: 88%;
    }
    .header_wrapper .call-us{
    display:none;
    }
    #menu .ddsmoothmenu{
    padding-left: 19%;
    }
    }
    Regards,
    Sameer
     
  5. geovisioncnc

    geovisioncnc New Member

    Joined:
    Mar 11, 2015
    Messages:
    19
    Likes Received:
    0
    Great ! Thank you :)
     
Thread Status:
Not open for further replies.

Share This Page