Created
July 26, 2017 14:59
-
-
Save artikus11/55e1e537f296b76918c166fb3fe40bdf to your computer and use it in GitHub Desktop.
Сообщение на сайте поверх всех элементов
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*================================================================================= | |
* Сообщения | |
*================================================================================= */ | |
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