responsive - Version 0.0.5

Version Notes

- more config theme at the backend

Download this release

Release Info

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


Code changes from version 0.0.4 to 0.0.5

Files changed (24) hide show
  1. app/code/local/Tvcom/Themecustom/Model/Option/Narbar.php +16 -0
  2. app/code/local/Tvcom/Themecustom/Model/{Background → Option}/Repeat.php +1 -1
  3. app/code/local/Tvcom/Themecustom/etc/system.xml +117 -3
  4. app/design/frontend/default/responsive/template/catalog/product/list/upsell.phtml +49 -0
  5. app/design/frontend/default/responsive/template/catalog/product/view.phtml +2 -2
  6. app/design/frontend/default/responsive/template/catalog/product/view/attributes.phtml +5 -11
  7. app/design/frontend/default/responsive/template/checkout/cart.phtml +4 -4
  8. app/design/frontend/default/responsive/template/checkout/cart/crosssell.phtml +2 -2
  9. app/design/frontend/default/responsive/template/checkout/onepage/link.phtml +1 -1
  10. app/design/frontend/default/responsive/template/customblock/socialnetwork/networkshare.phtml +21 -3
  11. app/design/frontend/default/responsive/template/page/html/breadcrumbs.phtml +46 -0
  12. app/design/frontend/default/responsive/template/page/html/topmenu.phtml +8 -2
  13. app/design/frontend/default/responsive/template/persistent/customer/form/register.phtml +5 -7
  14. app/design/frontend/default/responsive/template/wishlist/button/share.phtml +30 -0
  15. app/design/frontend/default/responsive/template/wishlist/button/tocart.phtml +30 -0
  16. app/design/frontend/default/responsive/template/wishlist/button/update.phtml +30 -0
  17. app/design/frontend/default/responsive/template/wishlist/item/column/cart.phtml +57 -0
  18. app/design/frontend/default/responsive/template/wishlist/item/column/image.phtml +33 -0
  19. app/design/frontend/default/responsive/template/wishlist/item/column/info.phtml +40 -0
  20. app/design/frontend/default/responsive/template/wishlist/item/column/remove.phtml +29 -0
  21. app/design/frontend/default/responsive/template/wishlist/item/list.phtml +68 -0
  22. package.xml +5 -6
  23. skin/frontend/default/responsive/css/responsive.css +10 -0
  24. skin/frontend/default/responsive/css/styles.php +38 -21
app/code/local/Tvcom/Themecustom/Model/Option/Narbar.php ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * define the Narbar style
5
+ *
6
+ */
7
+ class Tvcom_Themecustom_Model_Option_Narbar
8
+ {
9
+ public function toOptionArray()
10
+ {
11
+ return array(
12
+ array('value'=>'navbar-default' , 'label'=>'default'),
13
+ array('value'=>'navbar-inverse' , 'label'=>'inverse'),
14
+ );
15
+ }
16
+ }
app/code/local/Tvcom/Themecustom/Model/{Background → Option}/Repeat.php RENAMED
@@ -4,7 +4,7 @@
4
  * define the background repeat status
5
  *
6
  */
7
- class Tvcom_Themecustom_Model_Background_Repeat
8
  {
9
  public function toOptionArray()
10
  {
4
  * define the background repeat status
5
  *
6
  */
7
+ class Tvcom_Themecustom_Model_Option_Repeat
8
  {
9
  public function toOptionArray()
10
  {
app/code/local/Tvcom/Themecustom/etc/system.xml CHANGED
@@ -19,7 +19,7 @@
19
  <show_in_store>0</show_in_store>
20
  <groups>
21
  <themebg translate="label"> <!-- theme background -->
22
- <label>Background</label>
23
  <frontend_type>text</frontend_type>
24
  <sort_order>1</sort_order>
25
  <show_in_default>1</show_in_default>
@@ -69,7 +69,7 @@
69
  <bgrepeat translate="label"> <!-- background repeat -->
70
  <label>Background repeat</label>
71
  <frontend_type>select</frontend_type>
72
- <source_model>themecustom/background_repeat</source_model>
73
  <sort_order>5</sort_order>
74
  <show_in_default>1</show_in_default>
75
  <show_in_website>1</show_in_website>
@@ -156,16 +156,130 @@
156
  <show_in_website>1</show_in_website>
157
  <show_in_store>1</show_in_store>
158
  </logoalt>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
  </fields>
160
  </header>
161
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
162
  <footer translate="label"> <!-- footer -->
163
  <label>Footer</label>
164
  <frontend_type>text</frontend_type>
165
- <sort_order>4</sort_order>
166
  <show_in_default>1</show_in_default>
167
  <show_in_website>1</show_in_website>
168
  <show_in_store>0</show_in_store>
 
 
 
169
  </footer>
170
 
171
  </groups>
19
  <show_in_store>0</show_in_store>
20
  <groups>
21
  <themebg translate="label"> <!-- theme background -->
22
+ <label>Theme Background</label>
23
  <frontend_type>text</frontend_type>
24
  <sort_order>1</sort_order>
25
  <show_in_default>1</show_in_default>
69
  <bgrepeat translate="label"> <!-- background repeat -->
70
  <label>Background repeat</label>
71
  <frontend_type>select</frontend_type>
72
+ <source_model>themecustom/option_repeat</source_model>
73
  <sort_order>5</sort_order>
74
  <show_in_default>1</show_in_default>
75
  <show_in_website>1</show_in_website>
156
  <show_in_website>1</show_in_website>
157
  <show_in_store>1</show_in_store>
158
  </logoalt>
159
+
160
+ <navbar translate="label">
161
+ <label>Navigation Bar</label>
162
+ <frontend_type>select</frontend_type>
163
+ <source_model>themecustom/option_narbar</source_model>
164
+ <sort_order>3</sort_order>
165
+ <show_in_default>1</show_in_default>
166
+ <show_in_website>1</show_in_website>
167
+ <show_in_store>1</show_in_store>
168
+ </navbar>
169
+
170
+ <socialshare translate="label">
171
+ <label><![CDATA[<span style="color:red">Social share</span>]]></label>
172
+ <frontend_type>label</frontend_type>
173
+ <sort_order>4</sort_order>
174
+ <show_in_default>1</show_in_default>
175
+ <show_in_website>1</show_in_website>
176
+ <show_in_store>1</show_in_store>
177
+ </socialshare>
178
+
179
+ <facebook translate="label"> <!-- facebook link -->
180
+ <label>Facebook link</label>
181
+ <frontend_type>text</frontend_type>
182
+ <sort_order>5</sort_order>
183
+ <show_in_default>1</show_in_default>
184
+ <show_in_website>1</show_in_website>
185
+ <show_in_store>1</show_in_store>
186
+ <comment><![CDATA[Example: https://www.facebook.com/username]]></comment>
187
+ </facebook>
188
+
189
+ <twitter translate="label"> <!-- twitter link -->
190
+ <label>Twitter link</label>
191
+ <frontend_type>text</frontend_type>
192
+ <sort_order>6</sort_order>
193
+ <show_in_default>1</show_in_default>
194
+ <show_in_website>1</show_in_website>
195
+ <show_in_store>1</show_in_store>
196
+ <comment><![CDATA[Example: https://www.twitter.com/username]]></comment>
197
+ </twitter>
198
+
199
+ <youtube translate="label"> <!-- youtube link -->
200
+ <label>Youtube link</label>
201
+ <frontend_type>text</frontend_type>
202
+ <sort_order>7</sort_order>
203
+ <show_in_default>1</show_in_default>
204
+ <show_in_website>1</show_in_website>
205
+ <show_in_store>1</show_in_store>
206
+ <comment><![CDATA[Example: https://www.youtube.com/user/username]]></comment>
207
+ </youtube>
208
+
209
  </fields>
210
  </header>
211
 
212
+ <body translate="label"> <!-- body -->
213
+ <label>Body</label>
214
+ <frontend_type>text</frontend_type>
215
+ <sort_order>4</sort_order>
216
+ <show_in_default>1</show_in_default>
217
+ <show_in_website>1</show_in_website>
218
+ <show_in_store>1</show_in_store>
219
+ <fields>
220
+ <bgcolor translate="label">
221
+ <label>Background color</label>
222
+ <frontend_type>text</frontend_type>
223
+ <validate>color</validate>
224
+ <sort_order>1</sort_order>
225
+ <show_in_default>1</show_in_default>
226
+ <show_in_website>1</show_in_website>
227
+ <show_in_store>1</show_in_store>
228
+ </bgcolor>
229
+
230
+ <bgimage translate="label"> <!-- body background image -->
231
+ <label>Background image</label>
232
+ <frontend_type>image</frontend_type>
233
+ <backend_model>adminhtml/system_config_backend_image</backend_model>
234
+ <upload_dir config="system/filesystem/media" scope_info="1">bgimage</upload_dir>
235
+ <base_url type="media" scope_info="1">bgimage</base_url>
236
+ <sort_order>2</sort_order>
237
+ <show_in_default>1</show_in_default>
238
+ <show_in_website>1</show_in_website>
239
+ <show_in_store>1</show_in_store>
240
+ </bgimage>
241
+
242
+ <bgpositionx translate="label"> <!-- background position x -->
243
+ <label>Background position x</label>
244
+ <frontend_type>text</frontend_type>
245
+ <sort_order>3</sort_order>
246
+ <show_in_default>1</show_in_default>
247
+ <show_in_website>1</show_in_website>
248
+ <show_in_store>1</show_in_store>
249
+ </bgpositionx>
250
+
251
+ <bgpositiony translate="label"> <!-- background position y -->
252
+ <label>Background position y</label>
253
+ <fronend_type>text</fronend_type>
254
+ <sort_order>4</sort_order>
255
+ <show_in_default>1</show_in_default>
256
+ <show_in_website>1</show_in_website>
257
+ <show_in_store>1</show_in_store>
258
+ </bgpositiony>
259
+
260
+ <bgrepeat translate="label"> <!-- background repeat -->
261
+ <label>Background repeat</label>
262
+ <frontend_type>select</frontend_type>
263
+ <source_model>themecustom/option_repeat</source_model>
264
+ <sort_order>5</sort_order>
265
+ <show_in_default>1</show_in_default>
266
+ <show_in_website>1</show_in_website>
267
+ <show_in_store>1</show_in_store>
268
+ </bgrepeat>
269
+
270
+ </fields>
271
+ </body>
272
+
273
  <footer translate="label"> <!-- footer -->
274
  <label>Footer</label>
275
  <frontend_type>text</frontend_type>
276
+ <sort_order>5</sort_order>
277
  <show_in_default>1</show_in_default>
278
  <show_in_website>1</show_in_website>
279
  <show_in_store>0</show_in_store>
280
+
281
+
282
+
283
  </footer>
284
 
285
  </groups>
app/design/frontend/default/responsive/template/catalog/product/list/upsell.phtml ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <?php if(count($this->getItemCollection()->getItems())): ?>
28
+ <div class="box-collateral box-up-sell">
29
+ <h2><?php echo $this->__('You may also be interested in the following product(s)') ?></h2>
30
+ <?php $this->setColumnCount(4); // uncomment this line if you want to have another number of columns. also can be changed in layout ?>
31
+ <?php $this->resetItemsIterator() ?>
32
+ <?php for($_i=0;$_i<$this->getRowCount();$_i++): ?>
33
+ <div class="products-grid row" id="upsell-product-table">
34
+ <?php for($_j=0;$_j<$this->getColumnCount();$_j++): ?>
35
+ <?php if($_link=$this->getIterableItem()): ?>
36
+ <div class='col-md-3 col-sm-6 col-sm-12'>
37
+ <a href="<?php echo $_link->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_link->getName()) ?>" class="product-image"><img class='img-responsive' src="<?php echo $this->helper('catalog/image')->init($_link, 'small_image')->resize(125) ?>" alt="<?php echo $this->escapeHtml($_link->getName()) ?>" /></a>
38
+ <h3 class="product-name"><a href="<?php echo $_link->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_link->getName()) ?>"><?php echo $this->escapeHtml($_link->getName()) ?></a></h3>
39
+ <?php echo $this->getPriceHtml($_link, true, '-upsell') ?>
40
+ <?php echo $this->getReviewsSummaryHtml($_link) ?>
41
+ </div>
42
+ <?php endif; ?>
43
+ <?php endfor; ?>
44
+ </div>
45
+ <?php endfor; ?>
46
+ </table>
47
+ <script type="text/javascript">decorateTable('upsell-product-table')</script>
48
+ </div>
49
+ <?php endif ?>
app/design/frontend/default/responsive/template/catalog/product/view.phtml CHANGED
@@ -37,8 +37,8 @@
37
  var optionsPrice = new Product.OptionsPrice(<?php echo $this->getJsonConfig() ?>);
38
  </script>
39
  <div id="messages_product_view"><?php echo $this->getMessagesBlock()->getGroupedHtml() ?></div>
40
- <div class="product-view row">
41
- <div class="product-essential col-md-12">
42
  <form action="<?php echo $this->getSubmitUrl($_product) ?>" method="post" id="product_addtocart_form"<?php if($_product->getOptions()): ?> enctype="multipart/form-data"<?php endif; ?>>
43
  <?php echo $this->getBlockHtml('formkey') ?>
44
  <div class="no-display">
37
  var optionsPrice = new Product.OptionsPrice(<?php echo $this->getJsonConfig() ?>);
38
  </script>
39
  <div id="messages_product_view"><?php echo $this->getMessagesBlock()->getGroupedHtml() ?></div>
40
+ <div class="product-view">
41
+ <div class="product-essential">
42
  <form action="<?php echo $this->getSubmitUrl($_product) ?>" method="post" id="product_addtocart_form"<?php if($_product->getOptions()): ?> enctype="multipart/form-data"<?php endif; ?>>
43
  <?php echo $this->getBlockHtml('formkey') ?>
44
  <div class="no-display">
app/design/frontend/default/responsive/template/catalog/product/view/attributes.phtml CHANGED
@@ -36,17 +36,11 @@
36
  ?>
37
  <?php if($_additional = $this->getAdditionalData()): ?>
38
  <h2><?php echo $this->__('Additional Information') ?></h2>
39
- <table class="data-table" id="product-attribute-specs-table">
40
- <col width="25%" />
41
- <col />
42
- <tbody>
43
  <?php foreach ($_additional as $_data): ?>
44
- <tr>
45
- <th class="label label-info"><?php echo $this->escapeHtml($this->__($_data['label'])) ?></th>
46
- <td class="data"><?php echo $_helper->productAttribute($_product, $_data['value'], $_data['code']) ?></td>
47
- </tr>
48
- <?php endforeach; ?>
49
- </tbody>
50
- </table>
51
  <script type="text/javascript">decorateTable('product-attribute-specs-table')</script>
52
  <?php endif;?>
36
  ?>
37
  <?php if($_additional = $this->getAdditionalData()): ?>
38
  <h2><?php echo $this->__('Additional Information') ?></h2>
39
+ <div id="product-attribute-specs-table">
 
 
 
40
  <?php foreach ($_additional as $_data): ?>
41
+ <div class="col-sm-1 col-xs-12 label label-info"><?php echo $this->escapeHtml($this->__($_data['label'])) ?></div>
42
+ <div class="col-sm-11 col-xs-12 data"><?php echo $_helper->productAttribute($_product, $_data['value'], $_data['code']) ?></div>
43
+ <?php endforeach; ?>
44
+ </div>
 
 
 
45
  <script type="text/javascript">decorateTable('product-attribute-specs-table')</script>
46
  <?php endif;?>
app/design/frontend/default/responsive/template/checkout/cart.phtml CHANGED
@@ -136,12 +136,12 @@
136
  <script type="text/javascript">decorateTable('shopping-cart-table')</script>
137
  </fieldset>
138
  </form>
139
- <div class="cart-collaterals row">
140
- <div class="col2-set col-md-9 col-sm-12">
141
- <div class="col-md-6 col-sm-12">
142
  <?php echo $this->getChildHtml('crosssell') ?>
143
  </div>
144
- <div class="col-md-6 col-sm-12">
145
  <?php /* Extensions placeholder */ ?>
146
  <?php echo $this->getChildHtml('checkout.cart.extra') ?>
147
  <?php echo $this->getChildHtml('coupon') ?>
136
  <script type="text/javascript">decorateTable('shopping-cart-table')</script>
137
  </fieldset>
138
  </form>
139
+ <div class="cart-collaterals col-md-12 col-sm-12">
140
+ <div class="cart-left col-md-9 col-sm-12">
141
+ <div class="crosselldiv col-md-6 col-sm-12">
142
  <?php echo $this->getChildHtml('crosssell') ?>
143
  </div>
144
+ <div class="extradiv col-md-6 col-sm-12">
145
  <?php /* Extensions placeholder */ ?>
146
  <?php echo $this->getChildHtml('checkout.cart.extra') ?>
147
  <?php echo $this->getChildHtml('coupon') ?>
app/design/frontend/default/responsive/template/checkout/cart/crosssell.phtml CHANGED
@@ -34,9 +34,9 @@
34
  <?php if($this->getItemCount()): ?>
35
  <div class="crosssell">
36
  <h2><?php echo $this->__('Based on your selection, you may be interested in the following items:') ?></h2>
37
- <ul id="crosssell-products-list">
38
  <?php foreach ($this->getItems() as $_item): ?>
39
- <li class="item">
40
  <a class="product-image" href="<?php echo $_item->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_item->getName()) ?>"><img src="<?php echo $this->helper('catalog/image')->init($_item, 'thumbnail')->resize(75); ?>" width="75" height="75" alt="<?php echo $this->escapeHtml($_item->getName()) ?>" /></a>
41
  <div class="product-details">
42
  <h3 class="product-name"><a href="<?php echo $_item->getProductUrl() ?>"><?php echo $this->escapeHtml($_item->getName()) ?></a></h3>
34
  <?php if($this->getItemCount()): ?>
35
  <div class="crosssell">
36
  <h2><?php echo $this->__('Based on your selection, you may be interested in the following items:') ?></h2>
37
+ <ul id="crosssell-products-list" class="row">
38
  <?php foreach ($this->getItems() as $_item): ?>
39
+ <li class="item col-md-12 col-sm-6 col-xs-12">
40
  <a class="product-image" href="<?php echo $_item->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_item->getName()) ?>"><img src="<?php echo $this->helper('catalog/image')->init($_item, 'thumbnail')->resize(75); ?>" width="75" height="75" alt="<?php echo $this->escapeHtml($_item->getName()) ?>" /></a>
41
  <div class="product-details">
42
  <h3 class="product-name"><a href="<?php echo $_item->getProductUrl() ?>"><?php echo $this->escapeHtml($_item->getName()) ?></a></h3>
app/design/frontend/default/responsive/template/checkout/onepage/link.phtml CHANGED
@@ -25,5 +25,5 @@
25
  */
26
  ?>
27
  <?php if ($this->isPossibleOnepageCheckout()):?>
28
- <button type="button" title="<?php echo $this->__('Proceed to Checkout') ?>" class="button btn btn-default btn-proceed-checkout btn-checkout<?php if ($this->isDisabled()):?> no-checkout<?php endif; ?>"<?php if ($this->isDisabled()):?> disabled="disabled"<?php endif; ?> onclick="window.location='<?php echo $this->getCheckoutUrl() ?>';"><?php echo $this->__('Proceed to Checkout') ?></button>
29
  <?php endif?>
25
  */
26
  ?>
27
  <?php if ($this->isPossibleOnepageCheckout()):?>
28
+ <button type="button" title="<?php echo $this->__('Proceed to Checkout') ?>" class="button btn btn-danger btn-proceed-checkout btn-checkout<?php if ($this->isDisabled()):?> no-checkout<?php endif; ?>"<?php if ($this->isDisabled()):?> disabled="disabled"<?php endif; ?> onclick="window.location='<?php echo $this->getCheckoutUrl() ?>';"><?php echo $this->__('Proceed to Checkout') ?></button>
29
  <?php endif?>
app/design/frontend/default/responsive/template/customblock/socialnetwork/networkshare.phtml CHANGED
@@ -6,8 +6,26 @@
6
  */
7
  ?>
8
 
 
 
 
 
 
 
9
  <div id="divnetworkshare" class="">
10
- <a href="" alt="facebook"><i class="fa fa-facebook-square fa-3x"></i></a>
11
- <a href="" alt="twitter"><i class="fa fa-twitter-square fa-3x"></i></a>
12
- <a href="" alt="youtube"><i class="fa fa-youtube-square fa-3x"></i></a>
 
 
 
 
 
 
 
 
 
 
 
 
13
  </div>
6
  */
7
  ?>
8
 
9
+ <?php
10
+ // get the config
11
+ $facebook = Mage::getStoreConfig('setting/header/facebook');
12
+ $twitter = Mage::getStoreConfig('setting/header/twitter');
13
+ $youtube = Mage::getStoreConfig('setting/header/youtube');
14
+ ?>
15
  <div id="divnetworkshare" class="">
16
+ <?php if($facebook != '' || $twitter !=='' || $youtube !=''): ?>
17
+ <span class='followus'>Follow us</span>
18
+ <?php endif; ?>
19
+
20
+ <?php if($facebook != ''): ?>
21
+ <a href="<?php echo $facebook ?>" target='_blank' alt="facebook"><i class="fa fa-facebook-square fa-3x"></i></a>
22
+ <?php endif; ?>
23
+
24
+ <?php if($twitter != ''): ?>
25
+ <a href="<?php echo $twitter ?>" target='_blank' alt="twitter"><i class="fa fa-twitter-square fa-3x"></i></a>
26
+ <?php endif; ?>
27
+
28
+ <?php if($youtube !=''): ?>
29
+ <a href="<?php echo $youtube ?>" target='_blank' alt="youtube"><i class="fa fa-youtube-square fa-3x"></i></a>
30
+ <?php endif; ?>
31
  </div>
app/design/frontend/default/responsive/template/page/html/breadcrumbs.phtml ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <?php if($crumbs && is_array($crumbs)): ?>
28
+ <div class="breadcrumbs col-xs-12">
29
+ <ul>
30
+ <?php foreach($crumbs as $_crumbName=>$_crumbInfo): ?>
31
+ <li class="<?php echo $_crumbName ?>">
32
+ <?php if($_crumbInfo['link']): ?>
33
+ <a href="<?php echo $_crumbInfo['link'] ?>" title="<?php echo $this->escapeHtml($_crumbInfo['title']) ?>"><?php echo $this->escapeHtml($_crumbInfo['label']) ?></a>
34
+ <?php elseif($_crumbInfo['last']): ?>
35
+ <strong><?php echo $this->escapeHtml($_crumbInfo['label']) ?></strong>
36
+ <?php else: ?>
37
+ <?php echo $this->escapeHtml($_crumbInfo['label']) ?>
38
+ <?php endif; ?>
39
+ <?php if(!$_crumbInfo['last']): ?>
40
+ <span>/ </span>
41
+ <?php endif; ?>
42
+ </li>
43
+ <?php endforeach; ?>
44
+ </ul>
45
+ </div>
46
+ <?php endif; ?>
app/design/frontend/default/responsive/template/page/html/topmenu.phtml CHANGED
@@ -32,9 +32,15 @@
32
  */
33
  ?>
34
  <?php $_menu = $this->getHtml('level-top') ;?>
35
-
 
 
 
 
 
 
36
  <?php if($_menu): ?>
37
- <nav class="navbar navbar-default" role="navigation">
38
  <div class="navbar-header">
39
  <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
40
  <span class="sr-only">Toggle navigation</span>
32
  */
33
  ?>
34
  <?php $_menu = $this->getHtml('level-top') ;?>
35
+ <?php
36
+ $narbar_style = Mage::getStoreConfig('setting/header/navbar');
37
+ if ($narbar_style ==''){
38
+ // navbar-default is an option in the setting/header/navbar
39
+ $narbar_style = 'navbar-default';
40
+ }
41
+ ?>
42
  <?php if($_menu): ?>
43
+ <nav class="navbar <?php echo $narbar_style ?>" role="navigation">
44
  <div class="navbar-header">
45
  <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
46
  <span class="sr-only">Toggle navigation</span>
app/design/frontend/default/responsive/template/persistent/customer/form/register.phtml CHANGED
@@ -50,14 +50,12 @@
50
  <li>
51
  <label for="email_address" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
52
  <div class="input-box">
53
- <input type="text" name="email" id="email_address" value="<?php echo $this->escapeHtml($this->getFormData()->getEmail()) ?>" title="<?php echo $this->__('Email Address') ?>" class="input-text validate-email required-entry" />
54
  </div>
55
  </li>
56
  <?php if ($this->isNewsletterEnabled()): ?>
57
  <li class="control">
58
- <div class="input-box">
59
- <input type="checkbox" name="is_subscribed" title="<?php echo $this->__('Sign Up for Newsletter') ?>" value="1" id="is_subscribed"<?php if($this->getFormData()->getIsSubscribed()): ?> checked="checked"<?php endif; ?> class="checkbox" />
60
- </div>
61
  <label for="is_subscribed"><?php echo $this->__('Sign Up for Newsletter') ?></label>
62
  </li>
63
  <?php endif ?>
@@ -157,13 +155,13 @@
157
  <div class="field">
158
  <label for="password" class="required"><em>*</em><?php echo $this->__('Password') ?></label>
159
  <div class="input-box">
160
- <input type="password" name="password" id="password" title="<?php echo $this->__('Password') ?>" class="input-text required-entry validate-password" />
161
  </div>
162
  </div>
163
  <div class="field">
164
  <label for="confirmation" class="required"><em>*</em><?php echo $this->__('Confirm Password') ?></label>
165
  <div class="input-box">
166
- <input type="password" name="confirmation" title="<?php echo $this->__('Confirm Password') ?>" id="confirmation" class="input-text required-entry validate-cpassword" />
167
  </div>
168
  </div>
169
  </li>
@@ -175,7 +173,7 @@
175
  <div class="buttons-set">
176
  <p class="required"><?php echo $this->__('* Required Fields') ?></p>
177
  <p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>" class="back-link"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
178
- <button type="submit" title="<?php echo $this->__('Submit') ?>" class="button btn btn-default btn-sm"><?php echo $this->__('Submit') ?></button>
179
  </div>
180
  <?php if (Mage::helper('checkout')->isContextCheckout()): ?>
181
  <input name="context" type="hidden" value="checkout" />
50
  <li>
51
  <label for="email_address" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
52
  <div class="input-box">
53
+ <input type="text" name="email" id="email_address" value="<?php echo $this->escapeHtml($this->getFormData()->getEmail()) ?>" title="<?php echo $this->__('Email Address') ?>" class="form-control input-text validate-email required-entry" />
54
  </div>
55
  </li>
56
  <?php if ($this->isNewsletterEnabled()): ?>
57
  <li class="control">
58
+ <input type="checkbox" name="is_subscribed" title="<?php echo $this->__('Sign Up for Newsletter') ?>" value="1" id="is_subscribed"<?php if($this->getFormData()->getIsSubscribed()): ?> checked="checked"<?php endif; ?> class="checkbox" />
 
 
59
  <label for="is_subscribed"><?php echo $this->__('Sign Up for Newsletter') ?></label>
60
  </li>
61
  <?php endif ?>
155
  <div class="field">
156
  <label for="password" class="required"><em>*</em><?php echo $this->__('Password') ?></label>
157
  <div class="input-box">
158
+ <input type="password" name="password" id="password" title="<?php echo $this->__('Password') ?>" class="form-control input-text required-entry validate-password" />
159
  </div>
160
  </div>
161
  <div class="field">
162
  <label for="confirmation" class="required"><em>*</em><?php echo $this->__('Confirm Password') ?></label>
163
  <div class="input-box">
164
+ <input type="password" name="confirmation" title="<?php echo $this->__('Confirm Password') ?>" id="confirmation" class="form-control input-text required-entry validate-cpassword" />
165
  </div>
166
  </div>
167
  </li>
173
  <div class="buttons-set">
174
  <p class="required"><?php echo $this->__('* Required Fields') ?></p>
175
  <p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>" class="back-link"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
176
+ <button type="submit" title="<?php echo $this->__('Submit') ?>" class="button btn btn-success"><?php echo $this->__('Submit') ?></button>
177
  </div>
178
  <?php if (Mage::helper('checkout')->isContextCheckout()): ?>
179
  <input name="context" type="hidden" value="checkout" />
app/design/frontend/default/responsive/template/wishlist/button/share.phtml ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <?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;?>
app/design/frontend/default/responsive/template/wishlist/button/tocart.phtml ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <?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;?>
app/design/frontend/default/responsive/template/wishlist/button/update.phtml ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <?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;?>
app/design/frontend/default/responsive/template/wishlist/item/column/cart.phtml ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ /* @var $this Mage_Wishlist_Block_Customer_Wishlist_Item_Column_Cart */
28
+ /* @var Mage_Wishlist_Model_Item $item */
29
+ $item = $this->getItem();
30
+ $product = $item->getProduct();
31
+ $options = $this->getChild('customer.wishlist.item.options')
32
+ ->setItem($item)
33
+ ->getConfiguredOptions();
34
+ ?>
35
+ <div class="cart-cell">
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>
46
+ <?php else: ?>
47
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
48
+ <?php endif; ?>
49
+ <?php endif; ?>
50
+ </div>
51
+ <?php foreach($this->getSortedChildren() as $childName):?>
52
+ <?php echo $this->getChildHtml($childName, false);?>
53
+ <?php endforeach;?>
54
+ <?php if ($product->isVisibleInSiteVisibility()): ?>
55
+ <p><a class="link-edit" href="<?php echo $this->getItemConfigureUrl($item) ?>"><?php echo $this->__('Edit') ?></a></p>
56
+ <?php endif ?>
57
+ </div>
app/design/frontend/default/responsive/template/wishlist/item/column/image.phtml ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ /* @var Mage_Wishlist_Model_Item $item */
28
+ $item = $this->getItem();
29
+ $product = $item->getProduct();
30
+ ?>
31
+ <a class="product-image" href="<?php echo $this->getProductUrl($item) ?>" title="<?php echo $this->escapeHtml($product->getName()) ?>">
32
+ <img src="<?php echo $this->helper('catalog/image')->init($product, 'small_image')->resize(113, 113); ?>" class="img-responsive" alt="<?php echo $this->escapeHtml($product->getName()) ?>" />
33
+ </a>
app/design/frontend/default/responsive/template/wishlist/item/column/info.phtml ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ /* @var Mage_Wishlist_Model_Item $item */
28
+ $item = $this->getItem();
29
+ $product = $item->getProduct();
30
+ ?>
31
+ <h3 class="product-name"><a href="<?php echo $this->getProductUrl($item) ?>" title="<?php echo $this->escapeHtml($product->getName()) ?>"><?php echo $this->escapeHtml($product->getName()) ?></a></h3>
32
+ <div class="description std"><div class="inner"><?php echo $this->escapeHtml($this->stripTags($product->getShortDescription()));?></div></div>
33
+ <textarea name="description[<?php echo $item->getWishlistItemId() ?>]" onfocus="focusComment(this)" onblur="focusComment(this)" class="form-control" row="5" title="<?php echo $this->__('Comment') ?>"><?php echo ($this->escapeHtml($item->getDescription() ? $item->getDescription() : $this->helper('wishlist')->defaultCommentString())) ?></textarea>
34
+ <?php if($this->getSortedChildren()): ?>
35
+ <div class="item-manage">
36
+ <?php foreach($this->getSortedChildren() as $childName):?>
37
+ <?php echo $this->getChildHtml($childName, false);?>
38
+ <?php endforeach;?>
39
+ </div>
40
+ <?php endif; ?>
app/design/frontend/default/responsive/template/wishlist/item/column/remove.phtml ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <a href="<?php echo $this->getItemRemoveUrl($this->getItem()); ?>" onclick="return confirmRemoveWishlistItem();" title="<?php echo $this->__('Remove Item') ?>"
29
+ class="btn-remove btn-remove2"><i class="fa fa-times"></i></a>
app/design/frontend/default/responsive/template/wishlist/item/list.phtml ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <?php
28
+ $columns = $this->getColumns();
29
+ ?>
30
+ <table class="data-table table" id="wishlist-table">
31
+ <thead>
32
+ <tr>
33
+ <?php $number_column = 0; ?>
34
+ <?php foreach ($columns as $column): ?>
35
+ <th class="row<?php echo $number_column ?>"><?php echo $column->getTitle();?></th>
36
+ <?php $number_column++; ?>
37
+ <?php endforeach; ?>
38
+ </tr>
39
+ </thead>
40
+ <tbody>
41
+ <?php if (count($this->getItems())): ?>
42
+ <?php $number_column = 0; ?>
43
+ <?php foreach ($this->getItems() as $item): ?>
44
+ <tr id="item_<?php echo $item->getId();?>">
45
+ <?php foreach ($columns as $column): ?>
46
+ <td class="row<?php echo $number_column ?>"><?php $column->setItem($item); echo $column->toHtml($item);?></td>
47
+ <?php $number_column++ ; ?>
48
+ <?php endforeach; ?>
49
+ <?php $number_column = 0 ; ?>
50
+ </tr>
51
+ <?php endforeach ?>
52
+ <?php else: ?>
53
+ <td colspan="<?php echo count($columns);?>" class="wishlist-empty"><?php echo $this->__('This Wishlist has no Items');?></td>
54
+ <?php endif; ?>
55
+ </tbody>
56
+ </table>
57
+ <?php foreach ($columns as $column): ?>
58
+ <?php echo $column->getAdditionalHtml();?>
59
+ <?php endforeach; ?>
60
+ <script type="text/javascript">
61
+ //<![CDATA[
62
+ decorateTable('wishlist-table');
63
+
64
+ <?php foreach ($columns as $column): ?>
65
+ <?php echo $column->getJs();?>
66
+ <?php endforeach; ?>
67
+ //]]>
68
+ </script>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>responsive</name>
4
- <version>0.0.4</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
@@ -27,12 +27,11 @@ It support &#xD;
27
  - 479px+ Mobile devices&#xD;
28
  &#xD;
29
  -iPhone, Android, Windows phone and other smartphones</description>
30
- <notes>- Fix the complict between prototype and &#xD;
31
- - more config theme at the backend</notes>
32
  <authors><author><name>tony vu</name><user>vuductrung</user><email>vuductrung2003@gmail.com</email></author></authors>
33
- <date>2013-12-27</date>
34
- <time>04:08:37</time>
35
- <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"><dir name="Background"><file name="Repeat.php" hash="9dd83ae44d13d96333c2fd21b9fa52ad"/></dir><file name="Custom.php" hash="bff5f52f606c33ada097641e6e2970bf"/></dir><dir name="etc"><file name="config.xml" hash="de2cf6d9e20493e77747b83ba6e7dc2c"/><file name="system.xml" hash="3fb19805f991c0ac858f232954ecd122"/></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="layout"><file name="catalog.xml" hash="640975004551c7430aa338a8308a9b9c"/><file name="catalogsearch.xml" hash="e78dcf8c3211ec8a42252331087d1be1"/><file name="checkout.xml" hash="ebd8515f1888b36fc6545d4f3896d17f"/><file name="page.xml" hash="3ef588c9f2288861def36dc69dfe2e09"/></dir><dir name="template"><dir name="catalog"><dir name="category"><file name="view.phtml" hash="cceafbc47607415df40308f862f34df0"/></dir><dir name="layer"><file name="state.phtml" hash="4bf29ca4ce76d4f56a1f298f916dbc2e"/></dir><dir name="product"><dir name="compare"><file name="sidebar.phtml" hash="615efb37c43f4e6099dc4c869ea70d22"/></dir><dir name="list"><file name="toolbar.phtml" hash="434efbf05a25ad66e08617102f2acb84"/></dir><file name="list.phtml" hash="5afa6ac1016aa199ec4d33aa96aeb19b"/><dir name="view"><file name="attributes.phtml" hash="23f81cbe34ef191b5748d3899418a2b7"/></dir><file name="view.phtml" hash="1770881c388b30131ceb8f2074d675d7"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="da5a91141a34f6dab2f60ec72de0cd12"/></dir><file name="form.mini.phtml" hash="3be8cbc8ba6b9efda2540306a405af16"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="3c8d5da75a8b74a0b65237398a31faa1"/><file name="crosssell.phtml" hash="2fe2d26ad86123d453677687ad18cb75"/><dir name="item"><file name="default.phtml" hash="a09cd9fd47311cbcec3a5df9269e0c3a"/></dir><file name="shipping.phtml" hash="eb2582cb28f52f33489c143b7e907187"/><dir name="sidebar"><file name="default.phtml" hash="5b64bb75c39984829140dd7265025d75"/></dir><file name="sidebar.phtml" hash="9a14973934e91c8cfbef11b28d2ad5ec"/></dir><file name="cart.phtml" hash="a7fb8fa61eb3b92fd9c6f11feb7d2429"/><dir name="onepage"><file name="link.phtml" hash="d4b7eff731b7736a35b42340f1c484af"/></dir></dir><dir name="contacts"><file name="form.phtml" hash="5b209a14afb46dfdc35a4d8b9cd8a742"/></dir><dir name="customblock"><dir name="socialnetwork"><file name="networkshare.phtml" hash="4715a26226883bc70d9cd7a33ad06d02"/></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="form"><file name="edit.phtml" hash="46948a88aef6ba3a1e7ee46ab54c4727"/><file name="forgotpassword.phtml" hash="33d71a5f207dd942f14202d4cf915981"/></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="head.phtml" hash="882bceee3d6c945a8956f6253e24540a"/><file name="header.phtml" hash="234750241ec25e7775e6f34804418c6a"/><file name="pager.phtml" hash="19bf607119a013bb4797c5182c3e0380"/><file name="topmenu.phtml" hash="ff9474eb72f997fc3339375377851203"/></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="998323c2a4928a80167d573657cdf8e3"/></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><dir name="tag"><file name="list.phtml" hash="d35d9598af9b5bb51414cad0e88700e6"/></dir></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="extension.php" hash="f7a3840b2495768bd9c7efb84824b097"/><file name="homepage-example.php" hash="f8ee9d5edfee69f63f742b5b4c56ea99"/><file name="responsive.css" hash="dca313da3ccf7385de4679240b611605"/><file name="styles.css" hash="ffe1b3320e3ba74f627657079ee412a2"/><file name="styles.php" hash="61f1fd6390fc6c7d1c5cd66945a09dac"/></dir><dir name="images"><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/></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>
36
  <compatible/>
37
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
38
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>responsive</name>
4
+ <version>0.0.5</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
27
  - 479px+ Mobile devices&#xD;
28
  &#xD;
29
  -iPhone, Android, Windows phone and other smartphones</description>
30
+ <notes>- more config theme at the backend</notes>
 
31
  <authors><author><name>tony vu</name><user>vuductrung</user><email>vuductrung2003@gmail.com</email></author></authors>
32
+ <date>2013-12-29</date>
33
+ <time>22:04:29</time>
34
+ <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="Narbar.php" hash="35f4c30272e466a31d81efca71f73ab8"/><file name="Repeat.php" hash="b1f08bac80e215209e45fe8456b964f8"/></dir></dir><dir name="etc"><file name="config.xml" hash="de2cf6d9e20493e77747b83ba6e7dc2c"/><file name="system.xml" hash="2c8efd4c564aeba8d9de700681afe4ef"/></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="layout"><file name="catalog.xml" hash="640975004551c7430aa338a8308a9b9c"/><file name="catalogsearch.xml" hash="e78dcf8c3211ec8a42252331087d1be1"/><file name="checkout.xml" hash="ebd8515f1888b36fc6545d4f3896d17f"/><file name="page.xml" hash="3ef588c9f2288861def36dc69dfe2e09"/></dir><dir name="template"><dir name="catalog"><dir name="category"><file name="view.phtml" hash="cceafbc47607415df40308f862f34df0"/></dir><dir name="layer"><file name="state.phtml" hash="4bf29ca4ce76d4f56a1f298f916dbc2e"/></dir><dir name="product"><dir name="compare"><file name="sidebar.phtml" hash="615efb37c43f4e6099dc4c869ea70d22"/></dir><dir name="list"><file name="toolbar.phtml" hash="434efbf05a25ad66e08617102f2acb84"/><file name="upsell.phtml" hash="dd53151b6b5cc8a97bfa1957370b5570"/></dir><file name="list.phtml" hash="5afa6ac1016aa199ec4d33aa96aeb19b"/><dir name="view"><file name="attributes.phtml" hash="069cfe613294d042a930865d24f8d1ce"/></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="3be8cbc8ba6b9efda2540306a405af16"/></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="a09cd9fd47311cbcec3a5df9269e0c3a"/></dir><file name="shipping.phtml" hash="eb2582cb28f52f33489c143b7e907187"/><dir name="sidebar"><file name="default.phtml" hash="5b64bb75c39984829140dd7265025d75"/></dir><file name="sidebar.phtml" hash="9a14973934e91c8cfbef11b28d2ad5ec"/></dir><file name="cart.phtml" hash="1f21f5d44cc71b4ddef172b71eb87ab3"/><dir name="onepage"><file name="link.phtml" hash="5dc65b59514b034c4af5a914134a9485"/></dir></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="form"><file name="edit.phtml" hash="46948a88aef6ba3a1e7ee46ab54c4727"/><file name="forgotpassword.phtml" hash="33d71a5f207dd942f14202d4cf915981"/></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="head.phtml" hash="882bceee3d6c945a8956f6253e24540a"/><file name="header.phtml" hash="234750241ec25e7775e6f34804418c6a"/><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><dir name="tag"><file name="list.phtml" hash="d35d9598af9b5bb51414cad0e88700e6"/></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></dir></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="extension.php" hash="f7a3840b2495768bd9c7efb84824b097"/><file name="homepage-example.php" hash="f8ee9d5edfee69f63f742b5b4c56ea99"/><file name="responsive.css" hash="254eab4b7069918afba2e83ede00e8c3"/><file name="styles.css" hash="ffe1b3320e3ba74f627657079ee412a2"/><file name="styles.php" hash="93f148706602a928b9b1959352efdc64"/></dir><dir name="images"><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/></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>
35
  <compatible/>
36
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
37
  </package>
skin/frontend/default/responsive/css/responsive.css CHANGED
@@ -27,6 +27,10 @@
27
  /* Portrait tablet to landscape and desktop */
28
  @media (min-width: 768px) and (max-width: 979px) {}
29
 
 
 
 
 
30
 
31
  /* Landscape phone to portrait tablet */
32
  @media (min-width:768px){
@@ -57,6 +61,12 @@
57
 
58
  /* homepage */
59
  .home-callout{display: none}
 
 
 
 
 
 
60
  }
61
 
62
  /* Landscape phones and down */
27
  /* Portrait tablet to landscape and desktop */
28
  @media (min-width: 768px) and (max-width: 979px) {}
29
 
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 */
36
  @media (min-width:768px){
61
 
62
  /* homepage */
63
  .home-callout{display: none}
64
+
65
+ /* product page / additional information */
66
+ #product-attribute-specs-table .data{padding-left:0}
67
+
68
+ /* wishlist */
69
+ #wishlist-table .row0{display: none}
70
  }
71
 
72
  /* Landscape phones and down */
skin/frontend/default/responsive/css/styles.php CHANGED
@@ -2,20 +2,30 @@
2
  require_once('../../../../../app/Mage.php');
3
  header("Content-type: text/css; charset: UTF-8");
4
 
5
- $bgcolor = '#' . Mage::getStoreConfig('setting/themebg/bgcolor');
6
- $bgimage = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'bgimage/' . Mage::getStoreConfig('setting/themebg/bgimage');
7
- $bgpositionx = Mage::getStoreConfig('setting/themebg/bgpositionx');
8
- $bgpositiony = Mage::getStoreConfig('setting/themebg/bgpositiony');
9
- $bgpositionrepeat = Mage::getStoreConfig('setting/themebg/bgrepeat');
 
10
 
 
11
  $fontfm = Mage::getStoreConfig('setting/themefont/fontfamily');
12
  $fontsize = Mage::getStoreConfig('setting/themefont/fontsize');
13
  $textcolor = '#' . Mage::getStoreConfig('setting/themefont/textcolor');
 
 
 
 
 
 
 
 
14
  ?>
15
 
16
  * { margin:0; padding:0; }
17
 
18
- body { background:<?php echo $bgcolor ?> url(<?php echo $bgimage ?>) <?php echo $bgpositionx ?> <?php echo $bgpositiony ?> <?php echo $bgpositionrepeat ?>; font-family: <?php echo $fontfm ?>; font-size:<?php echo $fontsize ?>; color: <?php echo $textcolor ?>; text-align:center}
19
 
20
  img { border:0; vertical-align:top; }
21
 
@@ -85,7 +95,7 @@ ul,ol { list-style:none; }
85
  .page-print { background:#fff; padding:25px 30px; text-align:left; }
86
  .page-empty { background:#fff; padding:20px; text-align:left; }
87
  .page-popup { background:#fff; padding:25px 30px; text-align:left; }
88
- .main-container { background:#fbfaf6 /*url(../images/bkg_main1.gif) 50% 0 no-repeat*/; }
89
  .main { /*width:900px; margin:0 auto; min-height:400px; */padding:20px 15px 30px; background:#fffff; text-align:left; }
90
 
91
  /* Base Columns */
@@ -470,7 +480,7 @@ tr.summary-details-excluded { font-style:italic; }
470
  .link-rss { background:url(../images/i_rss.gif) 0 2px no-repeat; padding-left:18px; line-height:14px; white-space:nowrap; }
471
  .btn-remove {/* display:block; width:11px; height:11px; font-size:0; line-height:0; background:url(../images/btn_remove.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; */}
472
  .btn-previous { display:block; width:11px; height:11px; font-size:0; line-height:0; background:url(../images/btn_previous.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
473
- .btn-remove2 { display:block; width:16px; height:16px; font-size:0; line-height:0; background:url(../images/btn_trash.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
474
  .btn-edit { display:block; width:11px; height:11px; font-size:0; line-height:0; background:url(../images/btn_edit.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
475
 
476
  .cards-list dt { margin:5px 0 0; }
@@ -985,10 +995,10 @@ tr.summary-details-excluded { font-style:italic; }
985
 
986
  .product-view { border:1px solid #c4c6c8; }
987
 
988
- .product-essential { padding:25px; background:#fff url(../images/bkg_product-view.gif) 100% 0 no-repeat; }
989
  .product-essential h2 { font:bold 13px/1.35 Arial, Helvetica, sans-serif; }
990
 
991
- .product-collateral { background:#faf7ee url(../images/bkg_product_collateral.gif) 0 0 repeat-x; padding:25px; }
992
  .product-collateral h2 { font-weight:bold; font-size:15px; color:#e26703; border-bottom:1px solid #e5dcc3; padding:0 0 1px; margin:0 0 15px; }
993
  .product-collateral .box-collateral { margin:0 0 25px; }
994
 
@@ -1051,8 +1061,8 @@ tr.summary-details-excluded { font-style:italic; }
1051
  .product-options ul.options-list li { line-height:1.5; padding:2px 0; }
1052
  .product-options ul.options-list input.radio { float:left; margin-top:3px; }
1053
  .product-options ul.options-list input.checkbox { float:left; margin-top:3px; }
1054
- .product-options ul.options-list .label { display:block; margin-left:18px; }
1055
- .product-options ul.options-list label { font-weight:normal; }
1056
  .product-options ul.validation-failed { padding:0 7px; }
1057
  .product-options p.note { margin:0; font-size:11px; }
1058
  .product-options p.required { position:absolute; right:20px; top:20px; }
@@ -1088,13 +1098,13 @@ tr.summary-details-excluded { font-style:italic; }
1088
 
1089
  /* Block: Upsell */
1090
  .product-view .box-up-sell h2 { border-bottom:0; padding:0; margin:0 0 8px; }
1091
- .product-view .box-up-sell .products-grid { width:100%; border:1px solid #e5dcc3; }
1092
  .product-view .box-up-sell .products-grid td { width:25%; background:#f6f2e7; border-right:1px solid #e5dcc3; border-bottom:1px solid #e5dcc3; padding:15px 10px 12px; line-height:1.6em; }
1093
  .product-view .box-up-sell .products-grid tr.last td { border-bottom:0; }
1094
  .product-view .box-up-sell .products-grid td.last { border-right:0; }
1095
  .product-view .box-up-sell .products-grid td img { border:1px solid #e5dcc3; }
1096
  .product-view .box-up-sell .products-grid .product-image { text-align:center; }
1097
- .product-view .box-up-sell .products-grid td.empty { border-right:0; background:#f1ecdb; }
1098
  .product-view .box-up-sell .products-grid .ratings .rating-box { float:none; display:block; margin:0 0 3px; }
1099
 
1100
  /* Block: Tags */
@@ -1105,10 +1115,10 @@ tr.summary-details-excluded { font-style:italic; }
1105
  .product-view .box-tags .product-tags li.first { padding-left:0; }
1106
  .product-view .box-tags .product-tags li.last { background:none; padding-right:0; }
1107
  .product-view .box-tags .form-add label { display:block; font-size:13px; font-weight:bold; margin:0 0 5px; color:#0a263c;}
1108
- .product-view .box-tags .form-add .input-box { float:left; width:305px; margin:0 5px 0 0; background:url(../images/i_tag_add.gif) 0 2px no-repeat; padding:0 0 0 23px; }
1109
- .product-view .box-tags .form-add input.input-text { width:299px; }
1110
  .product-view .box-tags .form-add button.button span {/* border-color:#406a83; background:#618499; */}
1111
- .product-view .box-tags .note { margin:3px 0 0; padding:0 0 0 23px; font-size:11px; }
1112
 
1113
  /* Block: Reviews
1114
  .product-view .box-reviews dl { margin:15px 0; }
@@ -1125,6 +1135,7 @@ tr.summary-details-excluded { font-style:italic; }
1125
  .product-view .box-reviews .form-add .form-list .input-box { width:360px; }
1126
  .product-view .box-reviews .form-add .form-list input.input-text,
1127
  .product-view .box-reviews .form-add .form-list textarea { width:354px; }
 
1128
  */
1129
  /* Send a Friend */
1130
  .send-friend .form-list { width:615px; overflow:hidden; }
@@ -1492,7 +1503,7 @@ tr.summary-details-excluded { font-style:italic; }
1492
  .account-login .registered-users h2 { background-image:url(../images/i_page2.gif); }
1493
  .account-login .buttons-set { border:1px solid #bbb6a5; border-top:0; margin:0; padding:8px 13px; background:#dee5e8 url(../images/bkg_buttons-set1.gif) 0 0 repeat-x; }
1494
 
1495
- .account-create {}
1496
 
1497
  /* Captcha ================================================================================ */
1498
  .captcha-note { clear:left; padding-top:5px; }
@@ -1644,13 +1655,13 @@ tr.summary-details-excluded { font-style:italic; }
1644
  .page-print .price-incl-tax .price { display:inline; }
1645
 
1646
  /* My Wishlist */
1647
- .my-wishlist .data-table td { padding:10px; }
1648
  .my-wishlist .product-image { display:block; width:113px; height:113px; margin:0 0 5px; }
1649
  .my-wishlist textarea { display:block; width:97%; height:109px; }
1650
  .my-wishlist .buttons-set { margin-top:2em; }
1651
  .my-wishlist .buttons-set button.button { float:none; }
1652
  .my-wishlist .buttons-set .btn-add span,
1653
- .my-wishlist .buttons-set .btn-share span { border-color:#406a83; background:#618499; }
1654
  #wishlist-table .add-to-links { white-space:nowrap; }
1655
 
1656
  /* My Tags */
@@ -1857,9 +1868,15 @@ tr.summary-details-excluded { font-style:italic; }
1857
  /* social network block */
1858
  #divnetworkshare{margin-top: 10px; text-align: left}
1859
  #divnetworkshare a{color: #fff}
 
1860
 
1861
  /* popup cart page */
1862
  #popupcart{position: absolute; right: 0; z-index: 2; margin: 25px 14px 0px 0px; background:#fff; text-align: left; display: none; width: 250px}
1863
 
1864
  /* pagination catalog / category */
1865
- .pagination{margin: 0}
 
 
 
 
 
2
  require_once('../../../../../app/Mage.php');
3
  header("Content-type: text/css; charset: UTF-8");
4
 
5
+ /* theme background */
6
+ $theme_bgcolor = '#' . Mage::getStoreConfig('setting/themebg/bgcolor');
7
+ $theme_bgimage = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'bgimage/' . Mage::getStoreConfig('setting/themebg/bgimage');
8
+ $theme_bgpositionx = Mage::getStoreConfig('setting/themebg/bgpositionx');
9
+ $theme_bgpositiony = Mage::getStoreConfig('setting/themebg/bgpositiony');
10
+ $theme_bgpositionrepeat = Mage::getStoreConfig('setting/themebg/bgrepeat');
11
 
12
+ /* theme font */
13
  $fontfm = Mage::getStoreConfig('setting/themefont/fontfamily');
14
  $fontsize = Mage::getStoreConfig('setting/themefont/fontsize');
15
  $textcolor = '#' . Mage::getStoreConfig('setting/themefont/textcolor');
16
+
17
+ /* body style */
18
+ $container_bgcolor = '#' . Mage::getStoreConfig('setting/body/bgcolor');
19
+ $container_bgimage = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'bgimage/' . Mage::getStoreConfig('setting/body/bgimage');
20
+ $container_bgpositionx = Mage::getStoreConfig('setting/body/bgpositionx');
21
+ $container_bgpositiony = Mage::getStoreConfig('setting/body/bgpositiony');
22
+ $container_bgpositionrepeat = Mage::getStoreConfig('setting/body/bgrepeat');
23
+
24
  ?>
25
 
26
  * { margin:0; padding:0; }
27
 
28
+ body { background:<?php echo $theme_bgcolor ?> url(<?php echo $theme_bgimage ?>) <?php echo $theme_bgpositionx ?> <?php echo $theme_bgpositiony ?> <?php echo $theme_bgpositionrepeat ?>; font-family: <?php echo $fontfm ?>; font-size:<?php echo $fontsize ?>; color: <?php echo $textcolor ?>; text-align:center}
29
 
30
  img { border:0; vertical-align:top; }
31
 
95
  .page-print { background:#fff; padding:25px 30px; text-align:left; }
96
  .page-empty { background:#fff; padding:20px; text-align:left; }
97
  .page-popup { background:#fff; padding:25px 30px; text-align:left; }
98
+ .main-container { background:<?php echo $container_bgcolor ?> url(<?php echo $container_bgimage ?>) <?php echo $container_bgpositionx ?> <?php echo $container_bgpositiony ?> <?php echo $container_bgpositionrepeat ?>; }
99
  .main { /*width:900px; margin:0 auto; min-height:400px; */padding:20px 15px 30px; background:#fffff; text-align:left; }
100
 
101
  /* Base Columns */
480
  .link-rss { background:url(../images/i_rss.gif) 0 2px no-repeat; padding-left:18px; line-height:14px; white-space:nowrap; }
481
  .btn-remove {/* display:block; width:11px; height:11px; font-size:0; line-height:0; background:url(../images/btn_remove.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; */}
482
  .btn-previous { display:block; width:11px; height:11px; font-size:0; line-height:0; background:url(../images/btn_previous.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
483
+ .btn-remove2 { /*display:block; width:16px; height:16px; font-size:0; line-height:0; background:url(../images/btn_trash.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; */}
484
  .btn-edit { display:block; width:11px; height:11px; font-size:0; line-height:0; background:url(../images/btn_edit.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
485
 
486
  .cards-list dt { margin:5px 0 0; }
995
 
996
  .product-view { border:1px solid #c4c6c8; }
997
 
998
+ .product-essential { padding:25px 0; /*background:#fff url(../images/bkg_product-view.gif) 100% 0 no-repeat;*/ }
999
  .product-essential h2 { font:bold 13px/1.35 Arial, Helvetica, sans-serif; }
1000
 
1001
+ .product-collateral { background:#faf7ee /*url(../images/bkg_product_collateral.gif) 0 0 repeat-x*/; padding:25px 15px; }
1002
  .product-collateral h2 { font-weight:bold; font-size:15px; color:#e26703; border-bottom:1px solid #e5dcc3; padding:0 0 1px; margin:0 0 15px; }
1003
  .product-collateral .box-collateral { margin:0 0 25px; }
1004
 
1061
  .product-options ul.options-list li { line-height:1.5; padding:2px 0; }
1062
  .product-options ul.options-list input.radio { float:left; margin-top:3px; }
1063
  .product-options ul.options-list input.checkbox { float:left; margin-top:3px; }
1064
+ .product-options ul.options-list .label {/* display:block; margin-left:18px; */}
1065
+ .product-options ul.options-list label { font-weight:normal; color: <?php echo $textcolor?>}
1066
  .product-options ul.validation-failed { padding:0 7px; }
1067
  .product-options p.note { margin:0; font-size:11px; }
1068
  .product-options p.required { position:absolute; right:20px; top:20px; }
1098
 
1099
  /* Block: Upsell */
1100
  .product-view .box-up-sell h2 { border-bottom:0; padding:0; margin:0 0 8px; }
1101
+ /*.product-view .box-up-sell .products-grid { width:100%; border:1px solid #e5dcc3; }
1102
  .product-view .box-up-sell .products-grid td { width:25%; background:#f6f2e7; border-right:1px solid #e5dcc3; border-bottom:1px solid #e5dcc3; padding:15px 10px 12px; line-height:1.6em; }
1103
  .product-view .box-up-sell .products-grid tr.last td { border-bottom:0; }
1104
  .product-view .box-up-sell .products-grid td.last { border-right:0; }
1105
  .product-view .box-up-sell .products-grid td img { border:1px solid #e5dcc3; }
1106
  .product-view .box-up-sell .products-grid .product-image { text-align:center; }
1107
+ .product-view .box-up-sell .products-grid td.empty { border-right:0; background:#f1ecdb; } */
1108
  .product-view .box-up-sell .products-grid .ratings .rating-box { float:none; display:block; margin:0 0 3px; }
1109
 
1110
  /* Block: Tags */
1115
  .product-view .box-tags .product-tags li.first { padding-left:0; }
1116
  .product-view .box-tags .product-tags li.last { background:none; padding-right:0; }
1117
  .product-view .box-tags .form-add label { display:block; font-size:13px; font-weight:bold; margin:0 0 5px; color:#0a263c;}
1118
+ .product-view .box-tags .form-add .input-box { float:left; /*width:305px; padding:0 0 0 23px; */margin:0 5px 0 0; background:url(../images/i_tag_add.gif) 0 2px no-repeat; }
1119
+ .product-view .box-tags .form-add input.input-text { /*width:299px;*/ }
1120
  .product-view .box-tags .form-add button.button span {/* border-color:#406a83; background:#618499; */}
1121
+ .product-view .box-tags .note { margin:3px 0 0;/* padding:0 0 0 23px; */font-size:11px; }
1122
 
1123
  /* Block: Reviews
1124
  .product-view .box-reviews dl { margin:15px 0; }
1135
  .product-view .box-reviews .form-add .form-list .input-box { width:360px; }
1136
  .product-view .box-reviews .form-add .form-list input.input-text,
1137
  .product-view .box-reviews .form-add .form-list textarea { width:354px; }
1138
+
1139
  */
1140
  /* Send a Friend */
1141
  .send-friend .form-list { width:615px; overflow:hidden; }
1503
  .account-login .registered-users h2 { background-image:url(../images/i_page2.gif); }
1504
  .account-login .buttons-set { border:1px solid #bbb6a5; border-top:0; margin:0; padding:8px 13px; background:#dee5e8 url(../images/bkg_buttons-set1.gif) 0 0 repeat-x; }
1505
 
1506
+ .account-create #is_subscribed{display: inline-block}
1507
 
1508
  /* Captcha ================================================================================ */
1509
  .captcha-note { clear:left; padding-top:5px; }
1655
  .page-print .price-incl-tax .price { display:inline; }
1656
 
1657
  /* My Wishlist */
1658
+ /*.my-wishlist .data-table td { padding:10px; }
1659
  .my-wishlist .product-image { display:block; width:113px; height:113px; margin:0 0 5px; }
1660
  .my-wishlist textarea { display:block; width:97%; height:109px; }
1661
  .my-wishlist .buttons-set { margin-top:2em; }
1662
  .my-wishlist .buttons-set button.button { float:none; }
1663
  .my-wishlist .buttons-set .btn-add span,
1664
+ .my-wishlist .buttons-set .btn-share span { border-color:#406a83; background:#618499; }*/
1665
  #wishlist-table .add-to-links { white-space:nowrap; }
1666
 
1667
  /* My Tags */
1868
  /* social network block */
1869
  #divnetworkshare{margin-top: 10px; text-align: left}
1870
  #divnetworkshare a{color: #fff}
1871
+ .followus{color: #fff; vertical-align: top; padding: 10px 10px 0px 0px; display: inline-block;}
1872
 
1873
  /* popup cart page */
1874
  #popupcart{position: absolute; right: 0; z-index: 2; margin: 25px 14px 0px 0px; background:#fff; text-align: left; display: none; width: 250px}
1875
 
1876
  /* pagination catalog / category */
1877
+ .pagination{margin: 0}
1878
+
1879
+ /* product page / additional information */
1880
+ #product-attribute-specs-table .label{font-size:90%; font-weight:normal;}
1881
+ /* cart page */
1882
+ .cart-left, .crosselldiv{padding-left:0; padding-right:0}