responsive - Version 0.0.9

Version Notes

adapt and fix bugs on mobile product page and onepage checkout

Download this release

Release Info

Developer tony vu
Extension responsive
Version 0.0.9
Comparing to
See all releases


Code changes from version 0.0.8 to 0.0.9

app/design/frontend/default/responsive/layout/ajaxlogin.xml DELETED
@@ -1,23 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Ajax login
5
- * Author: Tony Vu
6
- */
7
- -->
8
- <layout version="0.1.0">
9
- <default translate="label" module="page">
10
-
11
- <reference name="head">
12
- <!-- ajax login css and javascript -->
13
- <action method="addCss"><stylesheet>css/ajaxlogin/login.css</stylesheet></action>
14
- <action method="addItem"><type>skin_js</type><name>js/ajaxlogin/login.js</name></action>
15
- </reference>
16
-
17
- <!-- ajax login -->
18
- <reference name="root">
19
- <block type="core/template" name="ajax_login" template="ajaxlogin/quick.phtml" />
20
- </reference>
21
-
22
- </default>
23
- </layout>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/responsive/layout/page.xml CHANGED
@@ -61,11 +61,7 @@ Default layout, loads most of the pages
61
 
62
  <action method="addItem"><type>js</type><name>lib/ds-sleight.js</name><params/><if>lt IE 7</if></action>
63
  <action method="addItem"><type>skin_js</type><name>js/ie6.js</name><params/><if>lt IE 7</if></action>
64
-
65
- <!-- ajax login css and javascript -->
66
- <action method="addCss"><stylesheet>css/ajaxlogin/login.css</stylesheet></action>
67
- <action method="addItem"><type>skin_js</type><name>js/ajaxlogin/login.js</name></action>
68
- </block>/
69
 
70
  <block type="core/text_list" name="after_body_start" as="after_body_start" translate="label">
71
  <label>Page Top</label>
@@ -119,12 +115,6 @@ Default layout, loads most of the pages
119
  </block>
120
 
121
  <block type="core/profiler" output="toHtml" name="core_profiler"/>
122
-
123
- <!-- ajax login -->
124
- <reference name="root">
125
- <block type="core/template" name="ajax_login" template="ajaxlogin/quick.phtml" />
126
- </reference>
127
-
128
  </default>
129
 
130
  <print translate="label" module="page">
61
 
62
  <action method="addItem"><type>js</type><name>lib/ds-sleight.js</name><params/><if>lt IE 7</if></action>
63
  <action method="addItem"><type>skin_js</type><name>js/ie6.js</name><params/><if>lt IE 7</if></action>
64
+ </block>
 
 
 
 
65
 
66
  <block type="core/text_list" name="after_body_start" as="after_body_start" translate="label">
67
  <label>Page Top</label>
115
  </block>
116
 
117
  <block type="core/profiler" output="toHtml" name="core_profiler"/>
 
 
 
 
 
 
118
  </default>
119
 
120
  <print translate="label" module="page">
app/design/frontend/default/responsive/template/ajaxlogin/quick.phtml DELETED
@@ -1,69 +0,0 @@
1
- <?php
2
- /**
3
- * Tvcom
4
- * Author: TonyVu
5
- * Date: 10.01.2014
6
- * Description
7
- */
8
- ?>
9
- <div id="ajaxlogin">
10
- <button class="btn btn-danger" id="btnajaxlogin" data-toggle="modal" data-target="#ajaxloginModal">Login</button>
11
- </div>
12
-
13
- <!-- Modal -->
14
- <div class="modal fade" id="ajaxloginModal" tabindex="-1" role="dialog" aria-labelledby="Ajax login form" aria-hidden="true">
15
- <div class="modal-dialog">
16
- <div class="modal-content">
17
- <div class="modal-header">
18
- <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
19
- <h4 class="modal-title" id="myModalLabel">LOGIN</h4>
20
- </div>
21
- <form action="<?php echo Mage::getBaseUrl() . 'customer/account/ajaxloginpost' ?>" method="post" id="ajaxlogin-form">
22
- <div class="modal-body">
23
- <p><?php echo $this->__('If you have an account with us, please log in.') ?></p>
24
- <p><input type="text" name="login[username]" value="<?php echo $this->escapeHtml($this->getUsername()) ?>" id="email" class="input-text required-entry validate-email form-control" title="<?php echo $this->__('Email Address') ?>" placeholder="Email"/></p>
25
- <p><input type="password" name="login[password]" class="input-text required-entry validate-password form-control" id="pass" title="<?php echo $this->__('Password') ?>" placeholder="Password" /></p>
26
- <p><a href="<?php echo Mage::getBaseUrl() . 'customer/account/forgotpassword/' ?>"><?php echo $this->__('Forgot Your Password?') ?></a></p>
27
- </div>
28
- <div class="modal-footer">
29
- <button type="button" class="btn btn-primary" id="btnlogin">Login</button>
30
- </div>
31
- </form>
32
- </div><!-- /.modal-content -->
33
- </div><!-- /.modal-dialog -->
34
- </div><!-- /.modal -->
35
-
36
- <script>
37
- jQuery(document).ready(function() {
38
- var testing = false;
39
- jQuery('#btnlogin').bind('click', function() {
40
- jQuery.ajax({
41
- url: jQuery('#ajaxlogin-form').attr('action'),
42
- type: 'post',
43
- data: jQuery('#ajaxlogin-form').serialize(),
44
- async: false,
45
- success: function(data) {
46
- var response = data.responseText;
47
- alert(response) ;
48
- alert(data);
49
- if (data == 'true')
50
- {
51
- testing = true;
52
- //$('#ajaxlogin-form').attr('action', 'https://example.com');
53
- // $('#ajaxlogin-form').submit();
54
- }
55
- else
56
- {
57
- alert('Your username/password are incorrect');
58
- }
59
- },
60
- error: function() {
61
- alert('There has been an error, please alert us immediately');
62
- }
63
- });
64
-
65
- return testing;
66
- });
67
- });
68
-
69
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/responsive/template/bundle/catalog/product/view/type/bundle/option/checkbox.phtml ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+
27
+ ?>
28
+
29
+ <?php /* @var $this Mage_Bundle_Block_Catalog_Product_View_Type_Bundle_Option_Checkbox */ ?>
30
+ <?php $_option = $this->getOption() ?>
31
+ <?php $_selections = $_option->getSelections() ?>
32
+ <label<?php if ($_option->getRequired()) echo ' class="required"' ?>><?php echo $this->escapeHtml($_option->getTitle()) ?><?php if ($_option->getRequired()) echo '<em>*</em>' ?></label>
33
+ <div<?php if ($_option->decoratedIsLast){?> class="last"<?php }?>>
34
+ <div class="input-box">
35
+ <?php if (count($_selections) == 1 && $_option->getRequired()): ?>
36
+ <?php echo $this->getSelectionQtyTitlePrice($_selections[0]) ?>
37
+ <input type="hidden" name="bundle_option[<?php echo $_option->getId() ?>]" value="<?php echo $_selections[0]->getSelectionId() ?>"/>
38
+ <?php else:?>
39
+ <div class="options-list">
40
+ <?php foreach($_selections as $_selection): ?>
41
+ <p><input onclick="bundle.changeSelection(this)" class="change-container-classname checkbox bundle-option-<?php echo $_option->getId() ?> <?php if ($_option->getRequired()) echo 'validate-one-required-by-name' ?>" id="bundle-option-<?php echo $_option->getId() ?>-<?php echo $_selection->getSelectionId() ?>" type="checkbox" name="bundle_option[<?php echo $_option->getId() ?>][]"<?php if ($this->_isSelected($_selection)) echo ' checked="checked"' ?><?php if (!$_selection->isSaleable()) echo ' disabled="disabled"' ?> value="<?php echo $_selection->getSelectionId() ?>"/>
42
+ <label for="bundle-option-<?php echo $_option->getId() ?>-<?php echo $_selection->getSelectionId() ?>"><?php echo $this->getSelectionQtyTitlePrice($_selection) ?></label>
43
+ <?php if($_option->getRequired()): ?>
44
+ <?php echo $this->setValidationContainer('bundle-option-'.$_option->getId().'-'.$_selection->getSelectionId(), 'bundle-option-'.$_option->getId().'-container') ?>
45
+ <?php endif; ?>
46
+ </p>
47
+ <?php endforeach; ?>
48
+ </div>
49
+ <div id="bundle-option-<?php echo $_option->getId() ?>-container"></div>
50
+ <?php endif; ?>
51
+ </div>
52
+ </div>
app/design/frontend/default/responsive/template/bundle/catalog/product/view/type/bundle/option/radio.phtml ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+
27
+ ?>
28
+
29
+ <?php /* @var $this Mage_Bundle_Block_Catalog_Product_View_Type_Bundle_Option_Radio */ ?>
30
+ <?php $_option = $this->getOption(); ?>
31
+ <?php $_selections = $_option->getSelections(); ?>
32
+ <?php $_default = $_option->getDefaultSelection(); ?>
33
+ <?php list($_defaultQty, $_canChangeQty) = $this->_getDefaultValues(); ?>
34
+ <?php $tierPriceHtml = ''; ?>
35
+
36
+ <label<?php if ($_option->getRequired()) echo ' class="required"' ?>><?php echo $this->escapeHtml($_option->getTitle()) ?><?php if ($_option->getRequired()) echo '<em>*</em>' ?></label>
37
+
38
+ <div<?php if ($_option->decoratedIsLast){?> class="last"<?php }?>>
39
+ <div class="input-box">
40
+ <?php /** @var $_selection Mage_Catalog_Model_Product*/ ?>
41
+ <?php if ($this->_showSingle()): ?>
42
+ <?php echo $this->getSelectionTitlePrice($_selections[0]); ?>
43
+ <?php if ($_selections[0]->getSelectionCanChangeQty()): ?>
44
+ <?php $tierPriceHtml = $this->getTierPriceHtml($_selections[0]); ?>
45
+ <?php endif; ?>
46
+ <input type="hidden" name="bundle_option[<?php echo $_option->getId() ?>]" value="<?php echo $_selections[0]->getSelectionId() ?>" />
47
+ <?php else:?>
48
+ <div class="options-list">
49
+ <?php if (!$_option->getRequired()): ?>
50
+ <p><input type="radio" onclick="bundle.changeSelection(this)" class="radio" id="bundle-option-<?php echo $_option->getId() ?>" name="bundle_option[<?php echo $_option->getId() ?>]"<?php echo ($_default && $_default->isSalable())?'':' checked="checked" ' ?> value=""/>
51
+ <label for="bundle-option-<?php echo $_option->getId() ?>"><?php echo $this->__('None') ?></label>
52
+ </p>
53
+ <?php endif; ?>
54
+ <?php foreach ($_selections as $_selection): ?>
55
+ <?php if ($_selection->getSelectionCanChangeQty() && $this->_isSelected($_selection)): ?>
56
+ <?php $tierPriceHtml = $this->getTierPriceHtml($_selection); ?>
57
+ <?php endif; ?>
58
+ <p><input type="radio" onclick="bundle.changeSelection(this)" class="radio<?php echo $_option->getRequired()?' validate-one-required-by-name':'' ?> change-container-classname" id="bundle-option-<?php echo $_option->getId() ?>-<?php echo $_selection->getSelectionId() ?>" name="bundle_option[<?php echo $_option->getId() ?>]"<?php if ($this->_isSelected($_selection)) echo ' checked="checked"' ?><?php if (!$_selection->isSaleable()) echo ' disabled="disabled"' ?>value="<?php echo $_selection->getSelectionId() ?>"/>
59
+ <label for="bundle-option-<?php echo $_option->getId() ?>-<?php echo $_selection->getSelectionId() ?>"><?php echo $this->getSelectionTitlePrice($_selection) ?></label>
60
+ <?php if ($_option->getRequired()): ?>
61
+ <?php echo $this->setValidationContainer('bundle-option-'.$_option->getId().'-'.$_selection->getSelectionId(), 'bundle-option-'.$_option->getId().'-container') ?>
62
+ <?php endif; ?>
63
+ </p>
64
+ <?php endforeach; ?>
65
+ </ul>
66
+ <div id="bundle-option-<?php echo $_option->getId() ?>-container"></div>
67
+ <?php endif; ?>
68
+ </div>
69
+ <span id="bundle-option-<?php echo $_option->getId() ?>-tier-prices"> <?php echo $tierPriceHtml; ?></span>
70
+ <span class="qty-holder">
71
+ <label for="bundle-option-<?php echo $_option->getId() ?>-qty-input"><?php echo $this->__('Qty:') ?>&nbsp;</label><input onkeyup="bundle.changeOptionQty(this, event)" onblur="bundle.changeOptionQty(this, event)" <?php if (!$_canChangeQty) echo ' disabled="disabled"' ?> id="bundle-option-<?php echo $_option->getId() ?>-qty-input" class="input-text qty<?php if (!$_canChangeQty) echo ' qty-disabled' ?>" type="text" name="bundle_option_qty[<?php echo $_option->getId() ?>]" value="<?php echo $_defaultQty ?>"/>
72
+ </span>
73
+ </div>
app/design/frontend/default/responsive/template/page/2columns-right.phtml CHANGED
@@ -38,8 +38,6 @@
38
  <?php echo $this->getChildHtml('after_body_start') ?>
39
  <div class="wrapper">
40
  <?php echo $this->getChildHtml('global_notices') ?>
41
- <!-- ajaxlogin block -->
42
- <?php echo $this->getChildHtml('ajax_login') ?>
43
  <div class="page container">
44
  <?php echo $this->getChildHtml('header') ?>
45
  <div class="main-container col2-right-layout">
38
  <?php echo $this->getChildHtml('after_body_start') ?>
39
  <div class="wrapper">
40
  <?php echo $this->getChildHtml('global_notices') ?>
 
 
41
  <div class="page container">
42
  <?php echo $this->getChildHtml('header') ?>
43
  <div class="main-container col2-right-layout">
app/design/frontend/default/responsive/template/persistent/customer/form/login.phtml CHANGED
@@ -39,14 +39,14 @@
39
  <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
40
  <form action="<?php echo $this->getPostActionUrl() ?>" method="post" id="login-form">
41
  <div class="customer-login col-md-12 col-xs-12">
42
- <div class="new-customer col-md-6 col-xs-12">
43
  <div class="content">
44
  <h2><?php echo $this->__('New Customers') ?></h2>
45
  <p><?php echo $this->__('By creating an account with our store, you will be able to move through the checkout process faster, store multiple shipping addresses, view and track your orders in your account and more.') ?></p>
46
  <button type="button" title="<?php echo $this->__('Create an Account') ?>" class="button btn btn-default btn-sm" onclick="window.location='<?php echo Mage::helper('persistent')->getCreateAccountUrl($this->getCreateAccountUrl()) ?>';"><?php echo $this->__('Create an Account') ?></button>
47
  </div>
48
  </div>
49
- <div class="registered-customer col-md-6 col-xs-12">
50
  <div class="content">
51
  <h2><?php echo $this->__('Registered Customers') ?></h2>
52
  <p><?php echo $this->__('If you have an account with us, please log in.') ?></p>
39
  <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
40
  <form action="<?php echo $this->getPostActionUrl() ?>" method="post" id="login-form">
41
  <div class="customer-login col-md-12 col-xs-12">
42
+ <div class="new-customer col-md-6 col-sm-12">
43
  <div class="content">
44
  <h2><?php echo $this->__('New Customers') ?></h2>
45
  <p><?php echo $this->__('By creating an account with our store, you will be able to move through the checkout process faster, store multiple shipping addresses, view and track your orders in your account and more.') ?></p>
46
  <button type="button" title="<?php echo $this->__('Create an Account') ?>" class="button btn btn-default btn-sm" onclick="window.location='<?php echo Mage::helper('persistent')->getCreateAccountUrl($this->getCreateAccountUrl()) ?>';"><?php echo $this->__('Create an Account') ?></button>
47
  </div>
48
  </div>
49
+ <div class="registered-customer col-md-6 col-sm-12">
50
  <div class="content">
51
  <h2><?php echo $this->__('Registered Customers') ?></h2>
52
  <p><?php echo $this->__('If you have an account with us, please log in.') ?></p>
app/design/frontend/default/responsive/template/wishlist/button/share.phtml CHANGED
@@ -26,5 +26,5 @@
26
  ?>
27
 
28
  <?php if($this->getWishlist()->getItemsCount()): ?>
29
- <button type="submit" name="save_and_share" title="<?php echo $this->__('Share Wishlist') ?>" class="button btn-share btn btn-default"><?php echo $this->__('Share Wishlist') ?></button>
30
  <?php endif;?>
26
  ?>
27
 
28
  <?php if($this->getWishlist()->getItemsCount()): ?>
29
+ <button style="margin-bottom: 7px" type="submit" name="save_and_share" title="<?php echo $this->__('Share Wishlist') ?>" class="button btn-share btn btn-default"><?php echo $this->__('Share Wishlist') ?></button>
30
  <?php endif;?>
app/design/frontend/default/responsive/template/wishlist/button/tocart.phtml CHANGED
@@ -26,5 +26,5 @@
26
  ?>
27
 
28
  <?php if($this->getWishlist()->getItemsCount() && $this->getWishlist()->isSalable()): ?>
29
- <button type="button" title="<?php echo $this->__('Add All to Cart') ?>" onclick="addAllWItemsToCart()" class="button btn-add btn btn-success"><?php echo $this->__('Add All to Cart') ?></button>
30
  <?php endif;?>
26
  ?>
27
 
28
  <?php if($this->getWishlist()->getItemsCount() && $this->getWishlist()->isSalable()): ?>
29
+ <button style="margin-bottom: 7px" type="button" title="<?php echo $this->__('Add All to Cart') ?>" onclick="addAllWItemsToCart()" class="button btn-add btn btn-success"><?php echo $this->__('Add All to Cart') ?></button>
30
  <?php endif;?>
app/design/frontend/default/responsive/template/wishlist/button/update.phtml CHANGED
@@ -26,5 +26,5 @@
26
  ?>
27
 
28
  <?php if($this->getWishlist()->getItemsCount()): ?>
29
- <button type="submit" name="do" title="<?php echo $this->__('Update Wishlist') ?>" class="button btn-update btn btn-info"><?php echo $this->__('Update Wishlist') ?></button>
30
  <?php endif;?>
26
  ?>
27
 
28
  <?php if($this->getWishlist()->getItemsCount()): ?>
29
+ <button style="margin-bottom: 7px" type="submit" name="do" title="<?php echo $this->__('Update Wishlist') ?>" class="button btn-update btn btn-info"><?php echo $this->__('Update Wishlist') ?></button>
30
  <?php endif;?>
app/design/frontend/default/responsive/template/wishlist/item/column/cart.phtml CHANGED
@@ -36,10 +36,10 @@ $options = $this->getChild('customer.wishlist.item.options')
36
  <?php echo $this->getPriceHtml($product, empty($options));?>
37
  <div class="add-to-cart-alt">
38
  <?php if ($item->canHaveQty() && $item->getProduct()->isVisibleInSiteVisibility()): ?>
39
- <input type="text" class="input-text qty validate-not-negative-number" name="qty[<?php echo $item->getId() ?>]" value="<?php echo $this->getAddToCartQty($item) * 1 ?>" />
40
  <?php endif; ?>
41
  <?php if ($product->isSaleable()): ?>
42
- <button type="button" title="<?php echo $this->__('Add to Cart') ?>" onclick="addWItemToCart(<?php echo $item->getId()?>);" class="button btn-cart"><?php echo $this->__('Add to Cart') ?></button>
43
  <?php else: ?>
44
  <?php if ($product->getIsSalable()): ?>
45
  <p class="availability in-stock"><span><?php echo $this->__('In stock') ?></span></p>
36
  <?php echo $this->getPriceHtml($product, empty($options));?>
37
  <div class="add-to-cart-alt">
38
  <?php if ($item->canHaveQty() && $item->getProduct()->isVisibleInSiteVisibility()): ?>
39
+ <input type="text" class="input-text qty validate-not-negative-number" name="qty[<?php echo $item->getId() ?>]" value="<?php echo $this->getAddToCartQty($item) * 1 ?>" /><br/>
40
  <?php endif; ?>
41
  <?php if ($product->isSaleable()): ?>
42
+ <button type="button" title="<?php echo $this->__('Add to Cart') ?>" onclick="addWItemToCart(<?php echo $item->getId()?>);" class="button btn-cart btn btn-default btn-xs"><?php echo $this->__('Add to Cart') ?></button>
43
  <?php else: ?>
44
  <?php if ($product->getIsSalable()): ?>
45
  <p class="availability in-stock"><span><?php echo $this->__('In stock') ?></span></p>
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>responsive</name>
4
- <version>0.0.8</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Responsive theme for Magento Community</summary>
10
  <description>Responsive theme for Magento Community</description>
11
- <notes>fix bootstrap bug on cart page</notes>
12
  <authors><author><name>tony vu</name><user>vuductrung</user><email>vuductrung2003@gmail.com</email></author></authors>
13
- <date>2014-01-12</date>
14
- <time>02:13:23</time>
15
- <contents><target name="magelocal"><dir name="Tvcom"><dir name="Page"><dir name="Block"><dir name="Html"><file name="Topmenu.php" hash="352187a84b23bf49e13729b35c83a3d4"/></dir></dir><dir name="etc"><file name="config.xml" hash="b44a7f3ece8afeb85ddb3a8d4e1ea692"/></dir></dir><dir name="Themecustom"><dir name="Helper"><file name="Data.php" hash="07559e4fa8223efcb10bd0795458c765"/></dir><dir name="Model"><file name="Custom.php" hash="bff5f52f606c33ada097641e6e2970bf"/><dir name="Option"><file name="Footerlayout.php" hash="090b0ae1f016d981cf94865ec9be41b0"/><file name="Narbar.php" hash="35f4c30272e466a31d81efca71f73ab8"/><file name="Repeat.php" hash="b1f08bac80e215209e45fe8456b964f8"/></dir></dir><dir name="etc"><file name="config.xml" hash="db7138914a67c69ed0f00942bbaf104e"/><file name="system.xml" hash="421d1f8e49a4829fb3fa0514e84bb27a"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Tvcom_Page.xml" hash="6eb34161b3a13e001b1af7dea977f484"/><file name="Tvcom_Themecustom.xml" hash="742cda5cce51b8cb0cfebfe3075a06d9"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="responsive"><dir name="template"><dir name="ajaxlogin"><file name="quick.phtml" hash="f6268c0829ff133df56d483be13a0317"/></dir><dir name="catalog"><dir name="category"><file name="view.phtml" hash="cceafbc47607415df40308f862f34df0"/></dir><dir name="layer"><file name="state.phtml" hash="214203502bb82c114adbf9922611ec12"/></dir><dir name="product"><dir name="compare"><file name="sidebar.phtml" hash="615efb37c43f4e6099dc4c869ea70d22"/></dir><dir name="list"><file name="toolbar.phtml" hash="5b54b231e59e1aeab6db818345d5ec83"/><file name="upsell.phtml" hash="dd53151b6b5cc8a97bfa1957370b5570"/></dir><file name="list.phtml" hash="5afa6ac1016aa199ec4d33aa96aeb19b"/><dir name="view"><file name="attributes.phtml" hash="069cfe613294d042a930865d24f8d1ce"/><file name="media.phtml" hash="1be8f4ea6e54f9a97e220f28931c4f50"/></dir><file name="view.phtml" hash="22bdbd648cebdc15fc130fecd02270f2"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="da5a91141a34f6dab2f60ec72de0cd12"/></dir><file name="form.mini.phtml" hash="c69a3ed9870612b53560daae21f461b4"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="3c8d5da75a8b74a0b65237398a31faa1"/><file name="crosssell.phtml" hash="1700a70387393e29eddd97c6e96c6b10"/><dir name="item"><file name="default.phtml" hash="982a6b6f9889db37d04c8c77330e8cf4"/></dir><file name="shipping.phtml" hash="c985cdf397a55cc3bffa62d7f381a4a8"/><dir name="sidebar"><file name="default.phtml" hash="5b64bb75c39984829140dd7265025d75"/></dir><file name="sidebar.phtml" hash="9a14973934e91c8cfbef11b28d2ad5ec"/></dir><file name="cart.phtml" hash="b4d576b3dc1bd2e0623f97d405f75dba"/><dir name="onepage"><file name="link.phtml" hash="5dc65b59514b034c4af5a914134a9485"/><dir name="review"><file name="button.phtml" hash="08ced3ff77fe2a821291adfbfb550aed"/><file name="info.phtml" hash="77a6d7af2da26472343105ecf8673699"/></dir><file name="shipping.phtml" hash="b250285eefc4925f9bdb4b9d5f6c27f1"/></dir><file name="success.phtml" hash="10ac42a5bfc041f65228ea192081b6ab"/></dir><dir name="contacts"><file name="form.phtml" hash="5b209a14afb46dfdc35a4d8b9cd8a742"/></dir><dir name="customblock"><dir name="socialnetwork"><file name="networkshare.phtml" hash="7899986c90dbbddb55c62e0e7d274ea8"/></dir></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="d39ddf7d3dea541b3c08bd1717356a9f"/><file name="info.phtml" hash="9a0afc6868754390a9eb66f470ddafc3"/></dir></dir><dir name="address"><file name="book.phtml" hash="cb8beb5f539e7b942ee1820a2f800251"/><file name="edit.phtml" hash="2ab899d81183651eb86d1616c7e47dec"/></dir><dir name="form"><file name="edit.phtml" hash="dab5bb72d61cdcac15b9354ad54cefd7"/><file name="forgotpassword.phtml" hash="33d71a5f207dd942f14202d4cf915981"/><file name="newsletter.phtml" hash="6b49b91d1cb6a2182362b137bb00103a"/></dir><dir name="widget"><file name="name.phtml" hash="3aa7a542339bf2d64eddcb382ff85f45"/></dir></dir><dir name="newsletter"><file name="subscribe.phtml" hash="5d09d74355d196f44024dfef9e9a7f49"/></dir><dir name="page"><file name="1column.phtml" hash="8f2578c19ae57f70ee3141d31f9f1a22"/><file name="2columns-left.phtml" hash="6ead24530145d1f7f9750b25dcf83d88"/><file name="2columns-right.phtml" hash="01ef5c6ca085cd2a94061eb9588588eb"/><file name="3columns.phtml" hash="1fbf4e3a5c3bc3c6414bf28c9c57bc13"/><dir name="html"><file name="breadcrumbs.phtml" hash="f9747a7825936ce7fdd5a79336fab0e5"/><file name="footer.phtml" hash="3658f16f6427c7746835c579481d0af5"/><file name="head.phtml" hash="ce81b1294a841d39929322b1798e750a"/><file name="header.phtml" hash="3c2ef79ad839ce7e809dee3c7a1fd923"/><file name="pager.phtml" hash="19bf607119a013bb4797c5182c3e0380"/><file name="topmenu.phtml" hash="7dcffcd9a29560769ef83a7e77a5eb18"/></dir><dir name="template"><file name="links.phtml" hash="00466dab494b53c8c764e38215876812"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="f26b21cac8c142ba35ded5b08cdd6f05"/><file name="login.phtml" hash="7122df5630b7437e4da4e2c8713a8efd"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="217361603f19a2c4fd6a8becb19a5232"/><file name="register.phtml" hash="4fb1808b870414a32b71b65b83dc5605"/></dir></dir></dir><dir name="poll"><file name="active.phtml" hash="cbaa4cf06b173ab28a5879e76016ca5e"/></dir><dir name="review"><file name="form.phtml" hash="184175fb22afaacfcd588aabf6380c74"/></dir><dir name="sales"><dir name="guest"><file name="form.phtml" hash="3a8f1de79b1e226d8a48d9ea1006625e"/></dir><dir name="order"><file name="history.phtml" hash="9fd12e237a9d991e69c0c7a6a8e5dd84"/><file name="info.phtml" hash="8dfda74e14c78f05edae029b174aa7b6"/><file name="recent.phtml" hash="43f16dbcfad82ee7ae055a897a277824"/></dir><dir name="reorder"><file name="sidebar.phtml" hash="3183a9cf029313d803990083201f8636"/></dir></dir><dir name="tag"><file name="list.phtml" hash="9bfb661f1323fff54a0b9b507d18f85a"/></dir><dir name="wishlist"><dir name="button"><file name="share.phtml" hash="0eb3cbc7aa19ec3c562fdf60f9c1ce05"/><file name="tocart.phtml" hash="80bb9191492b246287388215e32f9b35"/><file name="update.phtml" hash="8d51bc2ce1229e86b925e393120f407b"/></dir><dir name="item"><dir name="column"><file name="cart.phtml" hash="beb2c8db67cd7f4ab707e9fc9cb5b725"/><file name="image.phtml" hash="6c01f5e8e925ac7224c1ecb9f7ddcb3b"/><file name="info.phtml" hash="014767f1334d5d9d73f2afaab104374e"/><file name="remove.phtml" hash="09cbe88cb373ccb9a61a5c76781abfbf"/></dir><file name="list.phtml" hash="55cdcb13a576b84498af79347dffc796"/></dir><file name="sidebar.phtml" hash="962f4fb81d680bbd6b236b200c7d317b"/></dir></dir><dir name="layout"><file name="ajaxlogin.xml" hash="33d9357235dce6ab66cca1c81aa93ea2"/><file name="catalog.xml" hash="640975004551c7430aa338a8308a9b9c"/><file name="catalogsearch.xml" hash="e78dcf8c3211ec8a42252331087d1be1"/><file name="checkout.xml" hash="ebd8515f1888b36fc6545d4f3896d17f"/><file name="cms.xml" hash="2fa3d3d2ad2a56beef303c620f1b4c64"/><file name="page.xml" hash="5be7d67213eb0b29e93ec2157a415131"/><file name="paypal.xml" hash="6a17412a18ec4b860090f8fe31676b58"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="responsive"><dir name="layout"><file name="colorpicker.xml" hash="a7e0375e1a9c6715ef7955157202a6d3"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="responsive"><dir name="css"><dir name="ajaxlogin"><file name="login.css" hash="f6c23698159be620cf7467f419a0935f"/></dir><file name="responsive.css" hash="e573a9466e67ab00a95081e4b9f9966e"/><file name="styles.css" hash="ffe1b3320e3ba74f627657079ee412a2"/><file name="styles.php" hash="f50413740559c9ea031a25678cddeb02"/></dir><dir name="images"><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="free_shipping_callout.jpg" hash="476fc754dbcdd6a4259a885c5fcf307e"/><file name="home_main_callout.jpg" hash="0bb666dad9749423d4e8da6cd46467ac"/><file name="ph_callout_left_top.gif" hash="0f459871d68b62dd3252de29188199cf"/></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="prototype"><file name="prototype_bootstrap.js" hash="3fcb2fb515a2b67ee70fe53afbd2775f"/></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>responsive</name>
4
+ <version>0.0.9</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Responsive theme for Magento Community</summary>
10
  <description>Responsive theme for Magento Community</description>
11
+ <notes>adapt and fix bugs on mobile product page and onepage checkout</notes>
12
  <authors><author><name>tony vu</name><user>vuductrung</user><email>vuductrung2003@gmail.com</email></author></authors>
13
+ <date>2014-01-18</date>
14
+ <time>09:56:18</time>
15
+ <contents><target name="magelocal"><dir name="Tvcom"><dir name="Page"><dir name="Block"><dir name="Html"><file name="Topmenu.php" hash="352187a84b23bf49e13729b35c83a3d4"/></dir></dir><dir name="etc"><file name="config.xml" hash="b44a7f3ece8afeb85ddb3a8d4e1ea692"/></dir></dir><dir name="Themecustom"><dir name="Helper"><file name="Data.php" hash="07559e4fa8223efcb10bd0795458c765"/></dir><dir name="Model"><file name="Custom.php" hash="bff5f52f606c33ada097641e6e2970bf"/><dir name="Option"><file name="Footerlayout.php" hash="090b0ae1f016d981cf94865ec9be41b0"/><file name="Narbar.php" hash="35f4c30272e466a31d81efca71f73ab8"/><file name="Repeat.php" hash="b1f08bac80e215209e45fe8456b964f8"/></dir></dir><dir name="etc"><file name="config.xml" hash="db7138914a67c69ed0f00942bbaf104e"/><file name="system.xml" hash="421d1f8e49a4829fb3fa0514e84bb27a"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Tvcom_Page.xml" hash="6eb34161b3a13e001b1af7dea977f484"/><file name="Tvcom_Themecustom.xml" hash="742cda5cce51b8cb0cfebfe3075a06d9"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="responsive"><dir name="template"><dir name="bundle"><dir name="catalog"><dir name="product"><dir name="view"><dir name="type"><dir name="bundle"><dir name="option"><file name="checkbox.phtml" hash="dddbd500bce95df7e9422f9d2386ff47"/><file name="radio.phtml" hash="1028b2df56b8b34f9df9e1bfa01ac3bc"/></dir></dir></dir></dir></dir></dir></dir><dir name="catalog"><dir name="category"><file name="view.phtml" hash="cceafbc47607415df40308f862f34df0"/></dir><dir name="layer"><file name="state.phtml" hash="214203502bb82c114adbf9922611ec12"/></dir><dir name="product"><dir name="compare"><file name="sidebar.phtml" hash="615efb37c43f4e6099dc4c869ea70d22"/></dir><dir name="list"><file name="toolbar.phtml" hash="5b54b231e59e1aeab6db818345d5ec83"/><file name="upsell.phtml" hash="dd53151b6b5cc8a97bfa1957370b5570"/></dir><file name="list.phtml" hash="5afa6ac1016aa199ec4d33aa96aeb19b"/><dir name="view"><file name="attributes.phtml" hash="069cfe613294d042a930865d24f8d1ce"/><file name="media.phtml" hash="1be8f4ea6e54f9a97e220f28931c4f50"/></dir><file name="view.phtml" hash="22bdbd648cebdc15fc130fecd02270f2"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="da5a91141a34f6dab2f60ec72de0cd12"/></dir><file name="form.mini.phtml" hash="c69a3ed9870612b53560daae21f461b4"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="3c8d5da75a8b74a0b65237398a31faa1"/><file name="crosssell.phtml" hash="1700a70387393e29eddd97c6e96c6b10"/><dir name="item"><file name="default.phtml" hash="982a6b6f9889db37d04c8c77330e8cf4"/></dir><file name="shipping.phtml" hash="c985cdf397a55cc3bffa62d7f381a4a8"/><dir name="sidebar"><file name="default.phtml" hash="5b64bb75c39984829140dd7265025d75"/></dir><file name="sidebar.phtml" hash="9a14973934e91c8cfbef11b28d2ad5ec"/></dir><file name="cart.phtml" hash="b4d576b3dc1bd2e0623f97d405f75dba"/><dir name="onepage"><file name="link.phtml" hash="5dc65b59514b034c4af5a914134a9485"/><dir name="review"><file name="button.phtml" hash="08ced3ff77fe2a821291adfbfb550aed"/><file name="info.phtml" hash="77a6d7af2da26472343105ecf8673699"/></dir><file name="shipping.phtml" hash="b250285eefc4925f9bdb4b9d5f6c27f1"/></dir><file name="success.phtml" hash="10ac42a5bfc041f65228ea192081b6ab"/></dir><dir name="contacts"><file name="form.phtml" hash="5b209a14afb46dfdc35a4d8b9cd8a742"/></dir><dir name="customblock"><dir name="socialnetwork"><file name="networkshare.phtml" hash="7899986c90dbbddb55c62e0e7d274ea8"/></dir></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="d39ddf7d3dea541b3c08bd1717356a9f"/><file name="info.phtml" hash="9a0afc6868754390a9eb66f470ddafc3"/></dir></dir><dir name="address"><file name="book.phtml" hash="cb8beb5f539e7b942ee1820a2f800251"/><file name="edit.phtml" hash="2ab899d81183651eb86d1616c7e47dec"/></dir><dir name="form"><file name="edit.phtml" hash="dab5bb72d61cdcac15b9354ad54cefd7"/><file name="forgotpassword.phtml" hash="33d71a5f207dd942f14202d4cf915981"/><file name="newsletter.phtml" hash="6b49b91d1cb6a2182362b137bb00103a"/></dir><dir name="widget"><file name="name.phtml" hash="3aa7a542339bf2d64eddcb382ff85f45"/></dir></dir><dir name="newsletter"><file name="subscribe.phtml" hash="5d09d74355d196f44024dfef9e9a7f49"/></dir><dir name="page"><file name="1column.phtml" hash="8f2578c19ae57f70ee3141d31f9f1a22"/><file name="2columns-left.phtml" hash="6ead24530145d1f7f9750b25dcf83d88"/><file name="2columns-right.phtml" hash="69012716b9e773a5357cc4be01159a4e"/><file name="3columns.phtml" hash="1fbf4e3a5c3bc3c6414bf28c9c57bc13"/><dir name="html"><file name="breadcrumbs.phtml" hash="f9747a7825936ce7fdd5a79336fab0e5"/><file name="footer.phtml" hash="3658f16f6427c7746835c579481d0af5"/><file name="head.phtml" hash="ce81b1294a841d39929322b1798e750a"/><file name="header.phtml" hash="3c2ef79ad839ce7e809dee3c7a1fd923"/><file name="pager.phtml" hash="19bf607119a013bb4797c5182c3e0380"/><file name="topmenu.phtml" hash="7dcffcd9a29560769ef83a7e77a5eb18"/></dir><dir name="template"><file name="links.phtml" hash="00466dab494b53c8c764e38215876812"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="f26b21cac8c142ba35ded5b08cdd6f05"/><file name="login.phtml" hash="7122df5630b7437e4da4e2c8713a8efd"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="094bd6f48256243281e4152b487a8510"/><file name="register.phtml" hash="4fb1808b870414a32b71b65b83dc5605"/></dir></dir></dir><dir name="poll"><file name="active.phtml" hash="cbaa4cf06b173ab28a5879e76016ca5e"/></dir><dir name="review"><file name="form.phtml" hash="184175fb22afaacfcd588aabf6380c74"/></dir><dir name="sales"><dir name="guest"><file name="form.phtml" hash="3a8f1de79b1e226d8a48d9ea1006625e"/></dir><dir name="order"><file name="history.phtml" hash="9fd12e237a9d991e69c0c7a6a8e5dd84"/><file name="info.phtml" hash="8dfda74e14c78f05edae029b174aa7b6"/><file name="recent.phtml" hash="43f16dbcfad82ee7ae055a897a277824"/></dir><dir name="reorder"><file name="sidebar.phtml" hash="3183a9cf029313d803990083201f8636"/></dir></dir><dir name="tag"><file name="list.phtml" hash="9bfb661f1323fff54a0b9b507d18f85a"/></dir><dir name="wishlist"><dir name="button"><file name="share.phtml" hash="cbcdee03ca80bf30c9c281f27c18a705"/><file name="tocart.phtml" hash="c4abc4a86cf3e939b6a6625985b37b32"/><file name="update.phtml" hash="ac22c73383aeebb8ab9621d009b354a1"/></dir><dir name="item"><dir name="column"><file name="cart.phtml" hash="68cb9103433c18123348e5584438fe03"/><file name="image.phtml" hash="6c01f5e8e925ac7224c1ecb9f7ddcb3b"/><file name="info.phtml" hash="014767f1334d5d9d73f2afaab104374e"/><file name="remove.phtml" hash="09cbe88cb373ccb9a61a5c76781abfbf"/></dir><file name="list.phtml" hash="55cdcb13a576b84498af79347dffc796"/></dir><file name="sidebar.phtml" hash="962f4fb81d680bbd6b236b200c7d317b"/></dir></dir><dir name="layout"><file name="catalog.xml" hash="640975004551c7430aa338a8308a9b9c"/><file name="catalogsearch.xml" hash="e78dcf8c3211ec8a42252331087d1be1"/><file name="checkout.xml" hash="ebd8515f1888b36fc6545d4f3896d17f"/><file name="cms.xml" hash="2fa3d3d2ad2a56beef303c620f1b4c64"/><file name="page.xml" hash="3ef588c9f2288861def36dc69dfe2e09"/><file name="paypal.xml" hash="6a17412a18ec4b860090f8fe31676b58"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="responsive"><dir name="layout"><file name="colorpicker.xml" hash="a7e0375e1a9c6715ef7955157202a6d3"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="responsive"><dir name="css"><file name="responsive.css" hash="c4e0e96c0fd81b01aaebed3f55f84f2e"/><file name="styles.css" hash="ffe1b3320e3ba74f627657079ee412a2"/><file name="styles.php" hash="2ed350f1a13e4e982b3992e7c552eaae"/></dir><dir name="images"><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="free_shipping_callout.jpg" hash="476fc754dbcdd6a4259a885c5fcf307e"/><file name="home_main_callout.jpg" hash="0bb666dad9749423d4e8da6cd46467ac"/><file name="ph_callout_left_top.gif" hash="0f459871d68b62dd3252de29188199cf"/></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="prototype"><file name="prototype_bootstrap.js" hash="3fcb2fb515a2b67ee70fe53afbd2775f"/></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
skin/frontend/default/responsive/css/ajaxlogin/login.css DELETED
@@ -1,10 +0,0 @@
1
- /*
2
- Document : login.css
3
- Created on : 11/01/2014, 9:19:50 AM
4
- Author : Tony Vu
5
- Description:
6
- Purpose of the stylesheet follows.
7
- */
8
- #ajaxlogin{float:left;}
9
- #ajaxloginModal{text-align: left}
10
- #ajaxloginModal .modal-title{color: #e26703}
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/responsive/css/responsive.css CHANGED
@@ -30,6 +30,9 @@
30
  @media (max-width:990px){
31
  /* cart page */
32
  .extradiv{padding-left:0; padding-right:0; margin-top:20px}
 
 
 
33
  }
34
 
35
  /* Landscape phone to portrait tablet */
30
  @media (max-width:990px){
31
  /* cart page */
32
  .extradiv{padding-left:0; padding-right:0; margin-top:20px}
33
+
34
+ /* custoner login */
35
+ .registered-customer{margin-top: 20px}
36
  }
37
 
38
  /* Landscape phone to portrait tablet */
skin/frontend/default/responsive/css/styles.php CHANGED
@@ -132,7 +132,7 @@ ul,ol { list-style:none; }
132
  .page-empty { background:#fff; padding:20px; text-align:left; }
133
  .page-popup { background:#fff; padding:25px 30px; text-align:left; }
134
  .main-container { background:<?php echo $container_bgcolor ?> url(<?php echo $container_bgimage ?>) <?php echo $container_bgpositionx ?> <?php echo $container_bgpositiony ?> <?php echo $container_bgpositionrepeat ?>; }
135
- .main { /*width:900px; margin:0 auto; min-height:400px; */padding:20px 15px 30px; background:#fffff; text-align:left; }
136
 
137
  /* Base Columns */
138
  .col-left { /*float:left; width:195px; padding:0 0 1px; */}
@@ -575,8 +575,8 @@ tr.summary-details-excluded { font-style:italic; }
575
  .header .form-language label { font-weight:bold; padding-right:5px;/* color:#a7c6dd; vertical-align:middle; */}
576
  .header .form-language select { padding:0; }
577
  .header .form-language select.flags option { background-position:4px 50%; background-repeat:no-repeat; padding-left:25px; }
578
- .header .links { float:right;/* margin:0 0 6px; */}
579
- .header .links li { float:left; font-size:11px;/* background:url(../images/bkg_pipe1.gif) 100% 60% no-repeat;*/ padding:10px 15px 0 0px; }
580
  .header .links a { color:<?php echo $header_link_color ?>; font-size: <?php echo $header_link_size ?>;}
581
  .header .links .top-link-cart i{margin-left: 5px; color: <?php echo $header_link_color ?>}
582
  .header-container .top-container { clear:both; padding:5px 10px 0 12px; text-align:right; }
@@ -712,7 +712,7 @@ tr.summary-details-excluded { font-style:italic; }
712
 
713
  /* Block: Layered Navigation */
714
  .block-layered-nav { border:0; margin-bottom:20px}
715
- .block-layered-nav .block-title { border:0; padding:0; height:24px; /*background:url(../images/bkg_block-layered-title.gif) 0 0 no-repeat; */ text-indent:-999em; overflow:hidden; }
716
  .block-layered-nav .block-subtitle { line-height:1.35; background:#d5e8ff; padding:3px 9px; border:1px solid #b9ccdd; border-width:1px 0; text-transform:uppercase; color:#1f5070; }
717
  .block-layered-nav .block-content { border:1px solid #a0b3c3; background:#e7f1f4; }
718
  .block-layered-nav dt {/* background:url(../images/bkg_block-layered-dt.gif) 9px 11px no-repeat;*/ padding:7px 10px 0 7px; font-weight:bold; text-transform:uppercase; }
@@ -837,7 +837,7 @@ tr.summary-details-excluded { font-style:italic; }
837
 
838
 
839
  /* Category Page ========================================================================= */
840
- .category-title { border:0; margin:0 0 7px; }
841
  .category-image {/* width:100%; overflow:hidden; margin:0 0 10px; text-align:center; */}
842
  .category-image img {}
843
  .category-description { margin:0 0 10px; }
@@ -988,8 +988,8 @@ tr.summary-details-excluded { font-style:italic; }
988
  .price-to .price-label { font-weight:bold; white-space:nowrap; }
989
 
990
  /* Price notice next to the options */
991
- .price-notice { padding-left:10px; color:#999; }
992
- .price-notice .price { font-weight:bold; color:#2f2f2f; }
993
 
994
  /* Price as configured */
995
  .price-as-configured { margin:0; }
@@ -1049,8 +1049,8 @@ tr.summary-details-excluded { font-style:italic; }
1049
  .product-view .product-img-box .zoom-notice { font-size:11px; margin:0 0 5px; text-align:center; }
1050
  .product-view .product-img-box .zoom { position:relative; z-index:9; height:18px; margin:0 auto 13px; padding:0 28px; /*background:url(../images/slider_bg.gif) 50% 50% no-repeat; */ cursor:pointer; }
1051
  .product-view .product-img-box .zoom.disabled { -moz-opacity:.3; -webkit-opacity:.3; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";/*IE8*/ opacity:.3; }
1052
- .product-view .product-img-box .zoom #track { position:relative; height:18px; background:#f47b8c}
1053
- .product-view .product-img-box .zoom #handle { position:absolute; left:0; top:-4px; width:9px; height:24px; /*background:url(../images/magnifier_handle.gif) 0 0 no-repeat; */ background: #f17c8e}
1054
  .product-view .product-img-box .zoom .btn-zoom-out { position:absolute; left:2px; top:0; }
1055
  .product-view .product-img-box .zoom .btn-zoom-in { position:absolute; right:2px; top:0; }
1056
  .product-view .product-img-box .more-views h2 { font-size:11px; border-bottom:1px solid #ccc; margin:0 0 8px; text-transform:uppercase; }
@@ -1095,13 +1095,12 @@ tr.summary-details-excluded { font-style:italic; }
1095
  .product-options dd textarea { width:98%; height:8em; }
1096
  .product-options dd select { width:99%; }
1097
  .product-options dd .multiselect option { border-bottom:1px dotted #d9e5ee; padding:2px 4px; }
1098
- .product-options ul.options-list { margin-right:5px; }
1099
- .product-options ul.options-list li { line-height:1.5; padding:2px 0; }
1100
- .product-options ul.options-list input.radio { float:left; margin-top:3px; }
1101
- .product-options ul.options-list input.checkbox { float:left; margin-top:3px; }
1102
- .product-options ul.options-list .label {/* display:block; margin-left:18px; */}
1103
- .product-options ul.options-list label { font-weight:normal; color: <?php echo $textcolor?>; font-size:11px}
1104
- .product-options ul.validation-failed { padding:0 7px; }
1105
  .product-options p.note { margin:0; font-size:11px; }
1106
  .product-options p.required { position:absolute; right:20px; top:20px; }
1107
 
@@ -1704,7 +1703,8 @@ tr.summary-details-excluded { font-style:italic; }
1704
  .my-wishlist .buttons-set .btn-add span,
1705
  .my-wishlist .buttons-set .btn-share span { border-color:#406a83; background:#618499; }*/
1706
  #wishlist-table .add-to-links { white-space:nowrap; }
1707
-
 
1708
  /* My Tags */
1709
  .my-tag-edit { float:left; margin:0 0 10px; }
1710
  .my-tag-edit .btn-remove { float:right; margin:4px 0 0 5px; }
132
  .page-empty { background:#fff; padding:20px; text-align:left; }
133
  .page-popup { background:#fff; padding:25px 30px; text-align:left; }
134
  .main-container { background:<?php echo $container_bgcolor ?> url(<?php echo $container_bgimage ?>) <?php echo $container_bgpositionx ?> <?php echo $container_bgpositiony ?> <?php echo $container_bgpositionrepeat ?>; }
135
+ .main { /*width:900px; margin:0 auto; min-height:400px; */padding:0px 15px 30px; background:#fffff; text-align:left; }
136
 
137
  /* Base Columns */
138
  .col-left { /*float:left; width:195px; padding:0 0 1px; */}
575
  .header .form-language label { font-weight:bold; padding-right:5px;/* color:#a7c6dd; vertical-align:middle; */}
576
  .header .form-language select { padding:0; }
577
  .header .form-language select.flags option { background-position:4px 50%; background-repeat:no-repeat; padding-left:25px; }
578
+ .header .links { /*float:right; */margin:6px 0 6px; }
579
+ .header .links li { font-size:11px;/* float:left; background:url(../images/bkg_pipe1.gif) 100% 60% no-repeat;*/ padding:10px 15px 0 0px; }
580
  .header .links a { color:<?php echo $header_link_color ?>; font-size: <?php echo $header_link_size ?>;}
581
  .header .links .top-link-cart i{margin-left: 5px; color: <?php echo $header_link_color ?>}
582
  .header-container .top-container { clear:both; padding:5px 10px 0 12px; text-align:right; }
712
 
713
  /* Block: Layered Navigation */
714
  .block-layered-nav { border:0; margin-bottom:20px}
715
+ .block-layered-nav .block-title { border:0; padding:0; height:24px; /*background:url(../images/bkg_block-layered-title.gif) 0 0 no-repeat; */ text-indent:-999em; overflow:hidden; display: none}
716
  .block-layered-nav .block-subtitle { line-height:1.35; background:#d5e8ff; padding:3px 9px; border:1px solid #b9ccdd; border-width:1px 0; text-transform:uppercase; color:#1f5070; }
717
  .block-layered-nav .block-content { border:1px solid #a0b3c3; background:#e7f1f4; }
718
  .block-layered-nav dt {/* background:url(../images/bkg_block-layered-dt.gif) 9px 11px no-repeat;*/ padding:7px 10px 0 7px; font-weight:bold; text-transform:uppercase; }
837
 
838
 
839
  /* Category Page ========================================================================= */
840
+ .category-title { border:0; margin:0 0 7px; display:none;}
841
  .category-image {/* width:100%; overflow:hidden; margin:0 0 10px; text-align:center; */}
842
  .category-image img {}
843
  .category-description { margin:0 0 10px; }
988
  .price-to .price-label { font-weight:bold; white-space:nowrap; }
989
 
990
  /* Price notice next to the options */
991
+ .price-notice {/* padding-left:10px;*/ color:#999; }
992
+ .price-notice .price { color:#ff0000; }
993
 
994
  /* Price as configured */
995
  .price-as-configured { margin:0; }
1049
  .product-view .product-img-box .zoom-notice { font-size:11px; margin:0 0 5px; text-align:center; }
1050
  .product-view .product-img-box .zoom { position:relative; z-index:9; height:18px; margin:0 auto 13px; padding:0 28px; /*background:url(../images/slider_bg.gif) 50% 50% no-repeat; */ cursor:pointer; }
1051
  .product-view .product-img-box .zoom.disabled { -moz-opacity:.3; -webkit-opacity:.3; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";/*IE8*/ opacity:.3; }
1052
+ .product-view .product-img-box .zoom #track { position:relative; height:18px; background:#eee}
1053
+ .product-view .product-img-box .zoom #handle { position:absolute; left:0; top:-4px; width:9px; height:24px; /*background:url(../images/magnifier_handle.gif) 0 0 no-repeat; */ background: #333}
1054
  .product-view .product-img-box .zoom .btn-zoom-out { position:absolute; left:2px; top:0; }
1055
  .product-view .product-img-box .zoom .btn-zoom-in { position:absolute; right:2px; top:0; }
1056
  .product-view .product-img-box .more-views h2 { font-size:11px; border-bottom:1px solid #ccc; margin:0 0 8px; text-transform:uppercase; }
1095
  .product-options dd textarea { width:98%; height:8em; }
1096
  .product-options dd select { width:99%; }
1097
  .product-options dd .multiselect option { border-bottom:1px dotted #d9e5ee; padding:2px 4px; }
1098
+ .product-options .options-list { margin-right:5px; }
1099
+ .product-options .options-list p {/* line-height:1.5; */ margin-left:5px; }
1100
+ .product-options .options-list input.radio {/* float:left; margin-top:3px; */ display: inline-block}
1101
+ .product-options .options-list input.checkbox {/* float:left; margin-top:3px; */ display: inline-block}
1102
+ .product-options .options-list label { font-weight:normal; color: <?php echo $textcolor?>; font-size:11px}
1103
+ .product-options .validation-failed { padding:0 7px; }
 
1104
  .product-options p.note { margin:0; font-size:11px; }
1105
  .product-options p.required { position:absolute; right:20px; top:20px; }
1106
 
1703
  .my-wishlist .buttons-set .btn-add span,
1704
  .my-wishlist .buttons-set .btn-share span { border-color:#406a83; background:#618499; }*/
1705
  #wishlist-table .add-to-links { white-space:nowrap; }
1706
+ #wishlist-table .btn-cart {margin:5px 0;}
1707
+ #wishlist-table .description{margin-bottom:10px}
1708
  /* My Tags */
1709
  .my-tag-edit { float:left; margin:0 0 10px; }
1710
  .my-tag-edit .btn-remove { float:right; margin:4px 0 0 5px; }