I've tried afew things so far to try and get this to work,
So far i've tried:
// Media queries breakpoints
// --------------------------------------------------
// Extra small screen / phone
// Note: Deprecated @screen-xs and @screen-phone as of v3.0.1
@screen-xs: 1px;
@screen-xs-min: @screen-xs;
@screen-phone: @screen-xs-min;
// Small screen / tablet
// Note: Deprecated @screen-sm and @screen-tablet as of v3.0.1
@screen-sm: 2px;
@screen-sm-min: @screen-sm;
@screen-tablet: @screen-sm-min;
// Medium screen / desktop
// Note: Deprecated @screen-md and @screen-desktop as of v3.0.1
@screen-md: 3px;
@screen-md-min: @screen-md;
@screen-desktop: @screen-md-min;
// Large screen / wide desktop
// Note: Deprecated @screen-lg and @screen-lg-desktop as of v3.0.1
@screen-lg: 9999px;
@screen-lg-min: @screen-lg;
@screen-lg-desktop: @screen-lg-min;
Ive tried this Twitter Bootstrap Disable Responsive
Changed container and body to style="min-width: 1020px"
and style="width: 1020px"
I'm not sure if this is possible at all but I would like to use CDNJS to host the bootstrap files but make it non responsive as my design doesn't allow for this.
Any help or direction would be great.
Thanks