2017-02-28 7 views
1

私は応答このページに結果ボックスを作る苦労しています:IDXブローカー応答結果ページ

http://search.epicmountainhomes.com/i/deer-valley-real-estate

IDXブローカーまたはカスタムCSSを使用して編集する方法を誰もが知っていますか?

ありがとうございました!

+0

は[フレキシボックス](https://css-tricks.com/snippets/css/a-guide-to-flexbox/)良い解決策のように見えます。 – SpyderScript

+0

実際にFlexboxはより良いソリューションのように見えます。ありがとう。 – user2172183

答えて

2

[OK]を、私はそれを考え出した:

/*Set Mobile Responsiveness One*/ 
@media only screen and (max-width: 500px) { 
.IDX-resultsCell { 
    padding-bottom: 22px !important; 
    border-bottom: 1px solid #e5eeed !important; 
    clear: left!important; 
    width: 100%!important; 
} 
} 

/*Set Mobile Responsiveness Two*/ 
@media only screen and (max-width: 500px) { 
.IDX-grid .IDX-resultsPhotoImg { 
    height: 155%!important; 
    width: 100%!important; 
    clear: left!important; 
    left: 0!important; 
    position: absolute!important; 
    top: auto!important; 
    z-index: 0!important; 
    max-height: none; 
    max-width: none; 
    min-height: none; 
    min-width: none; 
} 
} 
関連する問題