Welcart Nova 1.2.1 をリリースしました。
[更新内容]
ヘッダーのレイアウト修正
Welcart Nova 1.2 アップデート時に上記のような表示でナビゲーションメニューの表示不具合を確認いたしました。下記のスタイルを追加して対応いたしました。
スタイル追加: welcart_basic-nova/css/home-parts.css 403行目あたり
@media screen and (min-width: 62.5em) { header.site-header .inner { width: 100%; height: 100%; padding: 35px 0 100% 0; background-color: #1c1c1c; } header .container { clear: both; float: none; margin-top: 70px; width: 100%; } /* -- .site-title -- */ h1.site-title { }
※ 「width: 100%;」を追加
CSSファイルのバージョン番号更新
バージョン番号更新: welcart_basic-nova/functions.php 157行目あたり
if( is_home() || is_front_page() ) { wp_enqueue_style( 'home-style', get_stylesheet_directory_uri() . '/css/home-parts.css', array('wc-basic-style'), '1.1'); }else { wp_enqueue_style( 'header-style', get_stylesheet_directory_uri() . '/css/parts.css', array('wc-basic-style'), '1.1'); } if( $is_IE ) {
※ バージョン番号を「1.0」から「1.1」に変更しました。