Разбираемся в CSS
-
Anonymous
Удалить WordPress Gutenberg кнопку
Сообщение
Anonymous »
Попытка построить сайт с WordPress + Gutenberg и Tailwind.
Код: Выделить всё
...
...
a:where(:not(.wp-element-button)) {
text-decoration: underline;
}
.wp-element-button, .wp-block-button__link {
background-color: #32373c;
border-width: 0;
color: #fff;
font-family: inherit;
font-size: inherit;
line-height: inherit;
padding: calc(0.667em + 2px) calc(1.333em + 2px);
text-decoration: none;
}
Как остановить WordPress от введения этого мусора в вашу тему?
Подробнее здесь:
https://stackoverflow.com/questions/759 ... ult-styles
1744192515
Anonymous
Попытка построить сайт с WordPress + Gutenberg и Tailwind.[code]
...
...
a:where(:not(.wp-element-button)) {
text-decoration: underline;
}
.wp-element-button, .wp-block-button__link {
background-color: #32373c;
border-width: 0;
color: #fff;
font-family: inherit;
font-size: inherit;
line-height: inherit;
padding: calc(0.667em + 2px) calc(1.333em + 2px);
text-decoration: none;
}
[/code]
Как остановить WordPress от введения этого мусора в вашу тему?
Подробнее здесь: [url]https://stackoverflow.com/questions/75978701/remove-wordpress-gutenberg-button-default-styles[/url]