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.

ボタン内に画像を埋め込む

0
Posted at

自分メモシリーズ

Pendoのデフォルトボタンに画像を埋め込む

  1. ボタンブロックを追加する
  2. ボタンのIDを取得する
  3. コードブロックのCSSを追加する
  4. 既存CSSを上書きするのでimportant指定が重要

image.png

/*replace with your button id*/
#pendo-button-96480497{
    background: url("画像のURL") !important;
    background-size: contain  !important;
    background-repeat: no-repeat  !important;
    width: 300px  !important;
    height: 200px  !important;
}
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?