Skip to content

Instantly share code, notes, and snippets.

@artikus11
Created July 26, 2017 14:59
Show Gist options
  • Save artikus11/55e1e537f296b76918c166fb3fe40bdf to your computer and use it in GitHub Desktop.
Save artikus11/55e1e537f296b76918c166fb3fe40bdf to your computer and use it in GitHub Desktop.
Сообщение на сайте поверх всех элементов
/*=================================================================================
* Сообщения
*================================================================================= */
add_action( 'wp_head', 'artabr_notice_shop' );
function artabr_notice_shop() {
?>
<style>
.shop-notice {
position: fixed;
bottom: 0;
z-index: 10000;
background: red;
width: 100%;
text-align: center;
color: #fff;
/* height: 40px; */
margin-bottom: 0;
padding: 10px;
display: block;
}
</style>
<div class="shop-notice"><span class="notice">Магазин работает в режиме пуско-наладки. Для заказа <a
href="https://korolandia.space/kontakt/">свяжитесь с нами </a></span></div>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment