Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #26335
    #130047

    Also, how do i enlarge the logo a little for responsive/mobile platforms.

    #130048

    Hi,

    You can move the left position of the logo.

    div .logo {
    float: left;
    position: absolute;
    left: 40%;
    }

    Adjust the left value.

    You can adjust the height of the logo on mobile view, this will also adjust the width automatically.

    @media only screen and (max-width: 767px) {
    .responsive .logo {
    height: 200px;
    }
    }

    Regards,

    Ismael

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Center logo’ is closed to new replies.