WordPressのプラグインEventsManagerの予約フォームをレスポンシブデザインに対応させた
4159 ワード
前提
- WordPressバージョン 5.6
- PHPバージョン 7.4.13
- Events Managerバージョン 5.9.9
目標
EventsManagerの予約フォームをレスポンシブデザインに対応させる
結論
CSSを追加してなんとかなった(コードは下部)
Before
- チケットのバグは気にしないお約束
モバイル表示2(1より狭い)
このようにレスポンシブデザインに対応していない上、最悪表示されないという致命的問題がある。
After
手順
以下CSSを放り込むだけ(のハズ)
style.css
/*アクセスしてきたデバイスのディスプレイ横幅が767px(要調整)以下のとき*/
@media (max-width: 767px){
#em-booking .em-booking-login { /*ログインフォーム左の縦線を非表示*/
border-left:none;
}
/*微調整*/
#em-booking .em-booking-form-details {
width:100%;
}
#em-booking .em-booking-form-details input.input,#em-booking .em-booking-form-details textarea {
width:100%;
}
#em-booking div.em-booking-login{ /*ここが肝*/
margin:auto;
}
}
#em-booking .em-booking-form label{
width:100%;
}
#em-booking div.em-booking-login label{
display:contents;
width:100%;
}
私の管理しているサイトには VK All in One Expansion Unit が入っていたので、このプラグインで追加される追加CSS機能で追加しました。
Author And Source
この問題について(WordPressのプラグインEventsManagerの予約フォームをレスポンシブデザインに対応させた), 我々は、より多くの情報をここで見つけました https://qiita.com/Taktstock/items/3b242d4191ccb9b2646d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .