A few questions on logo

Discussion in 'ButterBelly WordPress Theme' started by sangermike, Nov 28, 2014.

  1. sangermike

    sangermike Member

    Joined:
    Mar 9, 2014
    Messages:
    311
    Likes Received:
    5
    1. How can the logo be aligned to the left
    2. And is there a way to overlap the logo on the nav bar?
    3. OR is it possible to put the logo right on the navigation bar so I can either use the opacity header for a dif purpose or take it out
    URL: www.allmetal101.com
    Thank you.
     
  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .logo {
    text-align: left;
    }
    .logo img {
    margin-top: -70px;
    }
    .header_container {
    z-index: 1;
    }
    #menu .ddsmoothmenu li ul {
    z-index: 11;
    }
    In small view your menu will overlap by logo so i advise you not to use following code in from above code.
    Code:
    .logo img {
    margin-top: -70px;
    } 
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  3. sangermike

    sangermike Member

    Joined:
    Mar 9, 2014
    Messages:
    311
    Likes Received:
    5
    Will that still be the case if the logo is flushed more to the left? or if the menu if aligned to the right?
     
  4. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    #menu .ddsmoothmenu {
    text-align: right;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  5. sangermike

    sangermike Member

    Joined:
    Mar 9, 2014
    Messages:
    311
    Likes Received:
    5
    I really like the way it looks on the desktop. But as you warned it overlaps in smaller view :( No other solution? Thanks
     
  6. sangermike

    sangermike Member

    Joined:
    Mar 9, 2014
    Messages:
    311
    Likes Received:
    5
    Thanks Yogesh. You can close this one. I just won't display the logo on mobile.
     
  7. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    @media only screen and (max-width: 767px){
    .logo img {
    margin-top: 0px;
    max-width: 100%;
    }
    }
    @media only screen and (max-width: 960px) and (min-width: 767px){
    .logo img {
    margin-top: -25px;
    }
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     

Share This Page