いつもお世話になっております。
たびたびとすみません。
トップページにある、ヘッダー画像の上に、リンクボタンを左右に2つ置きたいのですが、
style.cssとfunctions.phpを編集しても反映してくれませんでした。
状況
style.css(Lightning Pro 子テーマ)
/* ヘッダー画像の上にアイテムを表示 */
.headButton {
position: absolute;
left: 0;
right: 0;
bottom: 30%;
z-index: 999;
}
/* ヘッダー画像に乗せる画像のサイズ調整 */
#topMainBnr .headButton img {
width: auto !important;
height: auto;
}
functions.php(子テーマ)
function my_lightning_pro_header_image_front($value) {
$temp = <<<EOM
<div class=”headButton”>
</div>
EOM;
$value2 = preg_replace(‘/<div class=”slideFrame”>/’,
‘<div class=”slideFrame”>’ . $temp, $value);
return $value2;
}
add_filter(‘lightning_pro_header_image_front’,
‘my_lightning_pro_header_image_front’);
どこのコードが原因なのでしょうか…。
他のやり方がお薦めだよというものがあれば、ご一緒にご教示お願いします。