テーマに _tk テーマを使用しました。テーマへのリンクhttps://github.com/Themekraft/_tk
。今、テーマからレスポンシブ機能を削除したいと思います。テーマからレスポンシブ機能を削除するにはどうすればよいですか? レスポンシブを無効にする機能はありますか。テーマを使用している場合は、レスポンシブ機能を削除するのを手伝ってください.
質問する
1034 次
3 に答える
1
レスポンシブをテーマから削除するにはどうすればよいかという質問をしたとき。_tk テーマがブートストラップ 3.0 を使用していることを確認しました。最新の 3.0 ブートストラップは、次の手順でレスポンシブを無効にできます。
Omit the viewport <meta> mentioned in the CSS docs
Override the width on the .container for each grid tier with a single width, for example width: 970px !important; Be sure that this comes after the default Bootstrap CSS. You can optionally avoid the !important with media queries or some selector-fu.
If using navbars, remove all navbar collapsing and expanding behavior.
For grid layouts, use .col-xs-* classes in addition to, or in place of, the medium/large ones. Don't worry, the extra-small device grid scales to all resolutions.
You'll still need Respond.js for IE8 (since our media queries are still there and need to be processed). This disables the "mobile site" aspects of Bootstrap.
于 2013-11-18T10:41:19.233 に答える