2013-11-14 3 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

누구든지 아래 두 가지 대답을 downvoted, 친절하게 이유는 이러한 투표를했다. – ggdx

+0

이봐, 내 생각에, 당신은 _tk 테마를 보지 않고 답을 주었다. 내가 이전에 말한 것처럼 _tk 테마를 사용했습니다. 그래서 그것에 대한 귀중한 의견을 말하십시오. – Ranjit

답변

1

에서 경로

includes/resources/bootstrap/css/bootstrap.css 

라인 아래

입니다. 나는 _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. 
-1

중 (유사에)

헤드의 CSS를하거나 머리

봐에서 미디어 쿼리 중 하나를 제거

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

또는

CSS

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

부트 스트랩을 사용 중입니다. 부트 스트랩 CSS에서 미디어 쿼리를 제거하고 난 주제에서 응답을 제거하는 방법 그 질문을 다음과 같이 헤더

<meta name="viewport" content="width=device-width, initial-scale=1.0"> 
관련 문제