Avada Forums Community Forum Mobile Logo Position

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • Sky-Life
    Participant
    Post count: 12

    I have the same problem. Usually centering logo only works on header 5, which I used, but still the logo aligns itself to the left at responsive menu breaking point.

    Wibernet
    Participant
    Post count: 1

    Did you ever find out how to do this on header 4?

    Troutmagnet
    Participant
    Post count: 1

    I managed to do it on 5, but I haven’t used it on 4.

    I ended up using a plug-in called Site Origin CSS in conjunction with Chrome’s Developer Tools. Then I created a media query:


    @media
    only screen and (max-device-width : 667px) {
    }

    Your target div is:

    div.fusion-header

    Your logo target is:

    img.fusion-mobile-logo

    …then inserted the code to fiddle with the spacing relative to my logotype shape.

    Seemed to work well. My problem is I want to stack the logo on top of the hamburger icon, but the div surrounding the logo and doesn’t want to play nice.

    feerickservice
    Participant
    Post count: 1

    @TroutMagnet: Did you ever find out how? That’s what I would like to do too.

    ashik93
    Participant
    Post count: 1

    Try this, it will work


    @media
    only screen and (max-device-width : 667px) {

    .fusion-mobile-logo{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    }
    }

    gafo84
    Participant
    Post count: 3

    I have the same problem, but it does not work…

    marklchaves
    Participant
    Post count: 873

    Hi Everyone,

    From what I’ve seen in the CSS that’s forcing the logos to be on the left is float: left.

    If you see this happening on your page, then try using this for displays smaller than a tablet.

    
    @media screen and (max-width: 767.998px) {
    	.fusion-logo {
    		float: none !important;
    		text-align: center;
    	}
    }
    
    

    Share & enjoy! 🙂

    Jesulin
    Participant
    Post count: 3

    I have the same problem.
    none of the CSS code work.

    Did anyone know how to do it?
    I would like to do too.

    peterkinvara
    Participant
    Post count: 1

    This worked perfectly for me.
    Thank you @marklchaves


    @media
    screen and (max-width: 767.998px) {
    .fusion-logo {
    float: none !important;
    text-align: center;
    }
    }

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.