2013-02-12 114 views
1

我使用的是內置自舉這個wordpress主題,
http://bootstrapwp.rachelbaker.me/ 它縮短了iPad和iPhone上的菜單,但我想在菜單崩潰的iPhone只,而不是iPad的。任何想法如何做到這一點?引導響應菜單

我可以在哪裏編輯?它與CSS或JS或兩者有關?

+0

這裏有一個問相同的問題檢查出http://stackoverflow.com/questions/10094479/prevent-menu-from-collapsing-in-768px-display-css-media-query – 2013-02-18 00:15:28

回答

0

Bootstrap預裝了@media查詢,因此您需要在覈心Bootstrap.css文件中修改它們。

在css文件中按ctrl-f並查找下面的內容。

// Landscape phones and down 
 
    @media (max-width: 480px) { ... } 
 

 
    // Landscape phone to portrait tablet 
 
    @media (max-width: 768px) { ... } 
 

 
    // Portrait tablet to landscape and desktop 
 
    @media (min-width: 768px) and (max-width: 980px) { ... } 
 

 
    // Large desktop 
 
    @media (min-width: 1200px) { .. }

在這裏你可以改變時。

切換菜單踢或者你可以過濾搜索「撥動」這應該表現出你撥動的媒體章節。