how to change media-query in elemental-theme, using version 5.7.5.2 ?
Permalink
I have a particular layout where I want the .responsive-menu-launch button on the top right corner to show at 992 pixels, instead of the default of 768px.
In navigation.less I changed:
.
In bootstrap variables i changed:
It doesn't show the desired results, - I guess I'm missing something.
Is there a way to do this easily?
I could not find any documentation on concrete5.
thanks for help.
kfog
In navigation.less I changed:
@media all and (max-width: 992px) { .ccm-responsive-menu-launch { display: block; } .ccm-responsive-navigation.original { display: none; } header { .ccm-search-block-form { margin-top: 20px; } } } @media all and (min-width: 992px) and (max-width: 1824px) { .ccm-responsive-overlay {
Viewing 15 lines of 18 lines. View entire code block.
In bootstrap variables i changed:
@grid-float-breakpoint: @screen-md-min;
It doesn't show the desired results, - I guess I'm missing something.
Is there a way to do this easily?
I could not find any documentation on concrete5.
thanks for help.
kfog
In navigation.less, change @screen-xs-max to @screen-sm-max.