LoginSignup
2
0

More than 3 years have passed since last update.

EC-CUBE4で管理画面からロゴを画像に変更するカスタマイズ例

Posted at

説明は後で追加します。

ロゴ画像に変更

logo.twig
<!-- ロゴを画像にする場合h1タグの中をimgタグにする -->
<h1><img src="http://placehold.jp/500x50.png" alt="{{ BaseInfo.shop_name }}"></h1>

デバイスごとにロゴ画像に変更

logo.twig
<!-- PCとSPでロゴを画像を切り替える場合はpictureタグを使う -->
<h1>
    <picture>
    <source media="(max-width:375px)" srcset="http://placehold.jp/200x50.png?text={SP用ロゴ}">
    <img src="http://placehold.jp/500x50.png?text={PC用ロゴ}" alt="{{ BaseInfo.shop_name }}">
    </picture>
</h1>
2
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
2
0