2013-11-14 126 views
0

我已將_tk主題用於我的主題。鏈接到主題https://github.com/Themekraft/_tk。現在我想從主題中刪除響應功能。我如何從主題中刪除響應功能?有沒有任何功能可以讓響應變得可靠。如果您已使用此主題,請幫助我刪除響應功能。從wordpress主題中刪除響應

+0

https://github.com/Themekraft/_tk/blob/master/style.css上@import URL(包括/ CSS /自舉-wp.css)評論; –

+0

誰低估了下面的兩個答案,請評論爲什麼這些投票是如此。 – ggdx

+0

嘿,我想,你沒有看_tk主題並給出答案。正如我之前所講的那樣,我使用了_tk主題。所以請給出寶貴的意見。 – Ranjit

回答

1

正如我問我怎麼可以從主題刪除敏感的問題。我知道_tk主題使用bootstrap 3.0,最新的3.0 bootstrap可以通過執行下面的操作來關閉響應。

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. 
-1

消除在CSS或頭部

看媒體查詢無論是對任何(類似)

<link rel='stylesheet' media='screen and (min-width: 701px)'> 

CSS

@media screen { 
     /* whatever */ 
} 
-1

您正在使用引導程序。從引導CSS刪除媒體查詢及以下路徑

includes/resources/bootstrap/css/bootstrap.css 

及以下線路從頭部

<meta name="viewport" content="width=device-width, initial-scale=1.0">