0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Shopify】画像バナーのカスタムCSSで画像サイズを変更する方法

Posted at

画像バナーのカスタムCSSで画像サイズを変更する方法を解説します。

バナーの高さを「小」に設定し、下記のコードをカスタムCSSに追加します。
.banner__mediaに設定するbackground-colorの色は背景と同じ色にしてください。

custom.css
.banner {
  min-height: 240px; #任意の高さ
}
.banner__media {
  background-color: #FFFFFF; #任意の色
}
img {
  object-fit: contain;
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?