functions.php に追加するコード
function custom_header_info() {
?>
<div class="header-info">
<div class="header-phone">
<i class="fas fa-phone-alt"></i> 00-0000-0000 (営業電話お断り)
</div>
<div class="header-hours">
定休日:水曜日 9:00~17:00
</div>
<div class="header-contact">
<a href="https://kitagawa.group/hobby/">お問い合わせはこちら</a>
</div>
</div>
<?php
}
add_action('wp_header_logo_after_open', 'custom_header_info');
.header-info {
display: flex;
flex-direction: column;
align-items: flex-end;
text-align: right;
position: fixed;
top: 0;
right: 0;
padding: 20px; /* 余白を調整 */
z-index: 1000; /* 他の要素の上に配置 */
background-color: #ffffff; /* 背景色を指定 */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* ドロップシャドウを追加 */
}
.header-phone {
color: #e65a00; /* 赤色に設定 */
font-size: 1.3em; /* 必要に応じてフォントサイズを調整 */
margin-bottom: 10px; /* 適宜調整 */
}
.header-hours {
font-size: 0.9em;
color: #666666;
margin-bottom: 10px;
}
.header-contact a {
display: inline-block;
padding: 10px 20px;
background-color: #e65a00;
color: #ffffff;
text-decoration: none;
border-radius: 5px;
font-size: 1.1em;
}
.header-contact a:hover {
background-color: #d94a00;
}
img {
image-rendering: -webkit-optimize-contrast;
}
タブレット等に応じて複数作成
@media screen and (max-width: 768px) {
.header-info {
display: none;
}
}
コメント