There is a website on wordpress , where I register bootstrap styles and my own style in my own theme through the functions.php file
// регистрируем стили add_action( 'wp_enqueue_scripts', 'register_plugin_styles' ); // регистрируем файл стилей и добавляем его в очередь function register_plugin_styles() { wp_register_style( 'bootstrap-css', get_template_directory_uri() . '/css/bootstrap.min.css' ); wp_enqueue_style( 'bootstrap-css' ); wp_register_style( 'style', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'style' ); } style.css spelled out in style.css, and successively it appears later on bootstrap.css
.navbar-inverse .navbar-nav>li>a { padding: 34px 7px 38px; } @media screen and (min-width: 1310px) and (max-width: 1366px) { .navbar-inverse .navbar-nav>li>a { padding: 34px 15px 38px; } } @media screen and (min-width: 1440px) { .navbar-inverse .navbar-nav>li>a { padding: 34px 10px; } @media screen and (min-width: 1600px) { .navbar-inverse .navbar-nav>li>a { padding: 34px 15px; } } @media screen and (min-width: 1680px) { .navbar-inverse .navbar-nav>li>a { padding: 34px 20px; } } @media screen and (min-width: 1920px) { .navbar-inverse .navbar-nav>li>a { padding: 34px 31px; } } But I can’t understand why on some computers and laptops media requests are triggered and visible through the code editor (15 inch laptop), and not on some, only the bootstrap media requests are visible (laptop 13 - 1366px resolution, PC with monitor 22 - 1920px resolution) and accordingly do not work ..
on services like screenfly, it runs on all permissions.
I tried to remove the screen - the effect did not give
1366pxand1440pxgap@media. Why did you do it? - Visman Nov.@media screen and (min-width: 1310px) and (max-width: 1440px) {}essentially it does not change .. - Vasyatoogle device toolbarand from the bootstrap media queries while reading, so it's not about the computers - Vasya