• Resolved edanm

    (@edanm)


    i’m using this theme for a site.
    when i login from a desktop, everything is perfectly.

    but from a mobile (iphone),
    the right image of the header, it touching the logo.

    i added a file that is a php (mobile detect.php).
    i want to add a statement that will show the header image on the desktop but not on the mobile

    OR

    when i log the site from a mobile, i will use another header image instead of the desktop one.

    can anyone help me on this one?

    thanks.

Viewing 1 replies (of 1 total)
  • Theme Author ronangelo

    (@ronangelo)

    when i log the site from a mobile, i will use another header image instead of the desktop one.

    Depends on how wide the intended screen is for mobile. For example, for screens that are 600px and below you can change the header image by adding this on the Custom CSS tab.

    @media screen and (max-width:600px){
       #header {
          background-image: url("YOUR_OTHER_IMAGE");
       }
    }

Viewing 1 replies (of 1 total)
  • The topic ‘mobile and desktop version’ is closed to new replies.