Как изменить цвет иконки блоков внимания?
1. Для старого классического редактора
Перейдите Внешний вид > Настроить > Дополнительные стили
и вставьте код
/* Блок Question */
.entry-content blockquote.question::before {
color: #3da2e0;
}
/* Блок Warning */
.entry-content blockquote.warning::before {
color: #f58128;
}
/* Блок Danger */
.entry-content blockquote.danger::before {
color: #ff6547;
}
/* Блок Check */
.entry-content blockquote.check::before {
color: #34bc58;
}
/* Блок Info */
.entry-content blockquote.info::before {
color: #3da2e0;
}
/* Блок Thumbs Up */
.entry-content blockquote.thumbs-up::before {
color: #34bc58;
}
/* Блок Thumbs Down */
.entry-content blockquote.thumbs-down::before {
color: #ff6547;
}
/* Блок Quote */
.entry-content blockquote.quote::before {
color: #9ca9c7;
}
2. Для нового редактора блоков Gutenberg
/* Блок Warning */
.entry-content blockquote.is-style-warning::before {
color: #f58128;
}
/* Блок Question */
.entry-content blockquote.is-style-question::before {
color: #3da2e0;
}
/* Блок Danger */
.entry-content blockquote.is-style-danger::before {
color: #ff6547;
}
/* Блок Check */
.entry-content blockquote.is-style-check::before {
color: #34bc58;
}
/* Блок Info */
.entry-content blockquote.is-style-info::before {
color: #3da2e0;
}
/* Блок Thumbs Up */
.entry-content blockquote.is-style-thumbs-up::before {
color: #34bc58;
}
/* Блок Thumbs Down */
.entry-content blockquote.is-style-thumbs-down::before {
color: #ff6547;
}
/* Блок Quote */
.entry-content blockquote.is-style-quote::before {
color: #9ca9c7;
}
В свойстве color
подставьте свой цвет.
Вам помог ответ?