Options

Mobile background

jerryrjerryr Registered Users Posts: 595 Major grins
edited August 12, 2013 in SmugMug Customization
Question : looking for the CSS for the background setting on the mobile view - background for site and background for collapsing menu. Thoughts ? jerry

Comments

  • Options
    JefCurtisJefCurtis Registered Users Posts: 14 Big grins
    edited August 12, 2013
    jerryr wrote: »
    Question : looking for the CSS for the background setting on the mobile view - background for site and background for collapsing menu. Thoughts ? jerry


    You can use this to change your background when view on mobile. ie iPhone.
    @media only screen 
    and (min-width : 320px) 
    and (max-width : 480px) {
    	html.sm-user-ui {
      	     background-image: url( YOURBACKGROUNDIMAGE URL);
        	     background-repeat: repeat;
        }
    }
    
Sign In or Register to comment.