• How can I make the logo larger and centered on the mobile version? I used the custom css box with your suggestions for the desktop version and it worked perfectly (for enlarging and centering)
    swimmerint1.com
    I use the Full Background plugin to skew the background image to whatever browser/screen size the blog is viewed from. Is there a way to have a different background image for the mobile version?
    thanks!

Viewing 1 replies (of 1 total)
  • Hello

    You dont need to use any plugin
    You can achieve this with HTML and CSS

    In HTML write
    Use
    <div class="logo-box-fullwidth”> </div>

    In CSS Use

    .logo-box-fullwidth
    {
    width:100%;
    height:100vh; /* 100vh will make div height same size as screen size */
    background:url (some/image.jpg) center top no-repeat;
    background-size:cover;
    }
    `

Viewing 1 replies (of 1 total)
  • The topic ‘mobile logo/background’ is closed to new replies.