Quantcast
Channel: お知らせ | Welcart フォーラム
Viewing all articles
Browse latest Browse all 162

Welcart Nova 1.1.2 をリリース

$
0
0

Welcart Nova 1.1.2 をリリースしました。

今回の更新内容は次の通りです。

Google Chromeで商品詳細ページの数量セレクトが崩れている不具合を修正

welcart_basic-nova/usces_cart.css 424~434行目

修正前

.item-info .quantity select {
	width: auto;

	font-size: 16px;
	margin: 0 10px;
	padding: 0 30px 0 20px;
	line-height: 50px;
	text-align: center;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

修正後

.item-info .quantity select {
	width: auto;
	height: 50px;
	font-size: 16px;
	margin: 0 10px;
	padding: 0 30px 0 20px;
	line-height: 50px;
	text-align: center;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

ベストセラーウィジットで価格表記がずれている不具合を修正

welcart_basic-nova/style.css 789~791行目

修正前

.widget_welcart_bestseller .itemprice {
	width: auto;

}

修正後

.widget_welcart_bestseller .itemprice {
	width: auto;
	float: right;
}

IEでウィンドウ幅を狭めるとヘッダー部分に余白ができる不具合を修正

welcart_basic-nova/ie.css

スタイル追加

@media screen and (max-width: 980px) {
	.home #site-navigation,
	.blog #site-navigation {
		position: absolute;
	}
}

商品詳細ページで業務パック割引(定期購入部分)のテーブルが崩れている不具合を修正

welcart_basic-nova/auto_delivery.css 146行目あたり

スタイル追加

#wc_regular .itemGpExp dt,
#wc_regular .itemGpExp dd {
	width: 100%;
}

WCEX DL Seller利用時、注文完了画面に表示されるダウンロードボタンの不具合を修正

welcart_basic-nova/dlseller.css 94行目あたり

スタイル追加

#wc_ordercompletion a.redownload_button {
    background-color: #d3222a;
    border: none;
    -moz-box-shadow: 0 3px #a5141a;
    -webkit-box-shadow: 0 3px #a5141a;
    box-shadow: 0 3px #a5141a;
}
#wc_ordercompletion a.redownload_button:hover {
    background-color: #e25157;
    -moz-box-shadow: 0 2px #d3222a;
    -webkit-box-shadow: 0 2px #d3222a;
    box-shadow: 0 2px #d3222a;
}

スマホ閲覧時、ヘッダーメニューの高さにばらつきがある不具合を修正

welcart_basic-nova/wcct-menu.js 3行目

修正前

$( document ).ready( function() {

修正後

$( window ).load( function() {

Viewing all articles
Browse latest Browse all 162

Trending Articles