New Landing How can we help? Themeforest Theme Support Uplift Viewport Break Values

Viewing 4 posts - 1 through 4 (of 4 total)
  • Posted in: Uplift
  • #319831
    Dev23847
    Member
    Post count: 124

    Hi,

    What are the different screen used by the theme, i.e. what are the different break points we should adhere to when adding “@media screen” statements to css file? Seems like 768px is one but would rather know for sure than try to guess.

    Thanks 🙂

    #319968
    David Martin – Support
    Moderator
    Post count: 20834

    We use the Bootstrap front-end framwork, broadly speaking it uses:

    /* Custom, iPhone Retina */ 
    @media only screen and (min-width : 320px) {
    
    }
    
    /* Extra Small Devices, Phones */ 
    @media only screen and (min-width : 480px) {
    
    }
    
    /* Small Devices, Tablets */
    @media only screen and (min-width : 768px) {
    
    }
    
    /* Medium Devices, Desktops */
    @media only screen and (min-width : 992px) {
    
    }
    
    /* Large Devices, Wide Screens */
    @media only screen and (min-width : 1200px) {
    
    }
    #319999
    Dev23847
    Member
    Post count: 124

    thank you!

    #320021
    David Martin – Support
    Moderator
    Post count: 20834

    Glad to help you out.

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.