2014-01-29 15 views

回答

0

您要做的事與Kentico CMS無關。所以不,沒有選擇。

你想要做的是修改使用媒體查詢產品的視圖的CSS(See this other stackoverflow question for more detail)

喜歡的東西:

@media(max-width: 400px) { //Note 400px is irrelevant, you want to specify what width your CSS changes. 
    .myProductClass { 
     width: 100%; //Or whatever else you need to do for __only__ mobile devices. 
    } 
}