responsive - Version 0.0.8

Version Notes

fix bootstrap bug on cart page

Download this release

Release Info

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


Code changes from version 0.0.7 to 0.0.8

Files changed (29) hide show
  1. app/code/local/Tvcom/Themecustom/Model/Option/Footerlayout.php +16 -0
  2. app/code/local/Tvcom/Themecustom/etc/config.xml +5 -1
  3. app/code/local/Tvcom/Themecustom/etc/system.xml +120 -3
  4. app/design/frontend/default/responsive/layout/ajaxlogin.xml +23 -0
  5. app/design/frontend/default/responsive/layout/cms.xml +89 -0
  6. app/design/frontend/default/responsive/layout/page.xml +11 -1
  7. app/design/frontend/default/responsive/layout/paypal.xml +204 -0
  8. app/design/frontend/default/responsive/template/ajaxlogin/quick.phtml +69 -0
  9. app/design/frontend/default/responsive/template/catalog/layer/state.phtml +1 -1
  10. app/design/frontend/default/responsive/template/catalog/product/list/toolbar.phtml +1 -1
  11. app/design/frontend/default/responsive/template/catalog/product/view/media.phtml +78 -0
  12. app/design/frontend/default/responsive/template/catalogsearch/form.mini.phtml +11 -3
  13. app/design/frontend/default/responsive/template/checkout/cart.phtml +24 -17
  14. app/design/frontend/default/responsive/template/checkout/cart/item/default.phtml +1 -1
  15. app/design/frontend/default/responsive/template/checkout/onepage/review/info.phtml +88 -0
  16. app/design/frontend/default/responsive/template/page/2columns-right.phtml +2 -0
  17. app/design/frontend/default/responsive/template/page/html/footer.phtml +48 -0
  18. app/design/frontend/default/responsive/template/sales/order/recent.phtml +2 -2
  19. app/design/frontend/default/responsive/template/tag/list.phtml +7 -5
  20. app/design/frontend/default/responsive/template/wishlist/sidebar.phtml +61 -0
  21. package.xml +8 -29
  22. skin/frontend/default/responsive/css/ajaxlogin/login.css +10 -0
  23. skin/frontend/default/responsive/css/extension.php +0 -13
  24. skin/frontend/default/responsive/css/homepage-example.php +0 -86
  25. skin/frontend/default/responsive/css/responsive.css +17 -3
  26. skin/frontend/default/responsive/css/styles.php +102 -85
  27. skin/frontend/default/responsive/images/free_shipping_callout.jpg +0 -0
  28. skin/frontend/default/responsive/images/home_main_callout.jpg +0 -0
  29. skin/frontend/default/responsive/images/ph_callout_left_top.gif +0 -0
app/code/local/Tvcom/Themecustom/Model/Option/Footerlayout.php ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * define the background repeat status
5
+ *
6
+ */
7
+ class Tvcom_Themecustom_Model_Option_Footerlayout
8
+ {
9
+ public function toOptionArray()
10
+ {
11
+ return array(
12
+ array('value'=>'one_column' , 'label'=>'1 column'),
13
+ array('value'=>'two_columns', 'label'=>'2 columns'),
14
+ );
15
+ }
16
+ }
app/code/local/Tvcom/Themecustom/etc/config.xml CHANGED
@@ -36,9 +36,13 @@
36
  <children>
37
  <config>
38
  <children>
39
- <setting translate="label" module="themecustom">
40
  <title>Setting Section</title>
41
  </setting>
 
 
 
 
42
  </children>
43
  </config>
44
  </children>
36
  <children>
37
  <config>
38
  <children>
39
+ <setting translate="label" module="themecustom"> <!-- setting section -->
40
  <title>Setting Section</title>
41
  </setting>
42
+
43
+ <layout translate="label" module="themecustom"> <!-- layout section -->
44
+ <title>Layout Section</title>
45
+ </layout>
46
  </children>
47
  </config>
48
  </children>
app/code/local/Tvcom/Themecustom/etc/system.xml CHANGED
@@ -9,14 +9,44 @@
9
  </tabs>
10
 
11
  <sections> <!-- create a new sections -->
12
- <setting translate="label" module="themecustom">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  <label>Setting</label>
14
  <tab>tvcomthemecustom</tab>
15
  <frontend_type>text</frontend_type>
16
  <sort_order>305</sort_order>
17
  <show_in_default>1</show_in_default>
18
  <show_in_website>1</show_in_website>
19
- <show_in_store>0</show_in_store>
20
  <groups>
21
  <themebg translate="label"> <!-- theme background -->
22
  <label>Theme Background</label>
@@ -307,6 +337,35 @@
307
  <show_in_store>1</show_in_store>
308
  <comment>If empty, It will take the default font size</comment>
309
  </link_size>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
310
 
311
  </fields>
312
  </header>
@@ -400,7 +459,7 @@
400
  </link_color>
401
 
402
  <link_size> <!-- footer link color -->
403
- <label>text size</label>
404
  <frontend_type>text</frontend_type>
405
  <sort_order>3</sort_order>
406
  <show_in_default>1</show_in_default>
@@ -409,6 +468,64 @@
409
  <comment>If empty, It will take the default font size</comment>
410
  </link_size>
411
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
412
  </fields>
413
  </footer>
414
 
9
  </tabs>
10
 
11
  <sections> <!-- create a new sections -->
12
+ <layout translate="label" module="themecustom"> <!-- layout section -->
13
+ <label>Layout</label>
14
+ <tab>tvcomthemecustom</tab>
15
+ <frontend_type>text</frontend_type>
16
+ <sort_order>0</sort_order>
17
+ <show_in_default>1</show_in_default>
18
+ <show_in_website>1</show_in_website>
19
+ <show_in_store>1</show_in_store>
20
+ <groups>
21
+ <footer translate="label"> <!-- theme background -->
22
+ <label>Footer</label>
23
+ <frontend_type>text</frontend_type>
24
+ <sort_order>1</sort_order>
25
+ <show_in_default>1</show_in_default>
26
+ <show_in_website>1</show_in_website>
27
+ <show_in_store>1</show_in_store>
28
+ <fields>
29
+ <layout translate="label">
30
+ <label>Layout Update</label>
31
+ <frontend_type>select</frontend_type>
32
+ <source_model>themecustom/option_footerlayout</source_model>
33
+ <show_in_default>1</show_in_default>
34
+ <show_in_website>1</show_in_website>
35
+ <show_in_store>1</show_in_store>
36
+ </layout>
37
+ </fields>
38
+ </footer>
39
+ </groups>
40
+ </layout>
41
+
42
+ <setting translate="label" module="themecustom"> <!-- setting section -->
43
  <label>Setting</label>
44
  <tab>tvcomthemecustom</tab>
45
  <frontend_type>text</frontend_type>
46
  <sort_order>305</sort_order>
47
  <show_in_default>1</show_in_default>
48
  <show_in_website>1</show_in_website>
49
+ <show_in_store>1</show_in_store>
50
  <groups>
51
  <themebg translate="label"> <!-- theme background -->
52
  <label>Theme Background</label>
337
  <show_in_store>1</show_in_store>
338
  <comment>If empty, It will take the default font size</comment>
339
  </link_size>
340
+
341
+ <text translate="label"> <!-- text style -->
342
+ <label><![CDATA[<span style="color:red">text</span>]]></label>
343
+ <frontend_type>label</frontend_type>
344
+ <sort_order>11</sort_order>
345
+ <show_in_default>1</show_in_default>
346
+ <show_in_website>1</show_in_website>
347
+ <show_in_store>1</show_in_store>
348
+ </text>
349
+
350
+ <text_color> <!-- footer text color -->
351
+ <label>color</label>
352
+ <frontend_type>text</frontend_type>
353
+ <validate>color</validate>
354
+ <sort_order>12</sort_order>
355
+ <show_in_default>1</show_in_default>
356
+ <show_in_website>1</show_in_website>
357
+ <show_in_store>1</show_in_store>
358
+ </text_color>
359
+
360
+ <text_size> <!-- footer link color -->
361
+ <label>font size</label>
362
+ <frontend_type>text</frontend_type>
363
+ <sort_order>13</sort_order>
364
+ <show_in_default>1</show_in_default>
365
+ <show_in_website>1</show_in_website>
366
+ <show_in_store>1</show_in_store>
367
+ <comment>If empty, It will take the default font size</comment>
368
+ </text_size>
369
 
370
  </fields>
371
  </header>
459
  </link_color>
460
 
461
  <link_size> <!-- footer link color -->
462
+ <label>font size</label>
463
  <frontend_type>text</frontend_type>
464
  <sort_order>3</sort_order>
465
  <show_in_default>1</show_in_default>
468
  <comment>If empty, It will take the default font size</comment>
469
  </link_size>
470
 
471
+ <text translate="label"> <!-- text style -->
472
+ <label><![CDATA[<span style="color:red">text</span>]]></label>
473
+ <frontend_type>label</frontend_type>
474
+ <sort_order>4</sort_order>
475
+ <show_in_default>1</show_in_default>
476
+ <show_in_website>1</show_in_website>
477
+ <show_in_store>1</show_in_store>
478
+ </text>
479
+
480
+ <text_color> <!-- footer text color -->
481
+ <label>color</label>
482
+ <frontend_type>text</frontend_type>
483
+ <validate>color</validate>
484
+ <sort_order>5</sort_order>
485
+ <show_in_default>1</show_in_default>
486
+ <show_in_website>1</show_in_website>
487
+ <show_in_store>1</show_in_store>
488
+ </text_color>
489
+
490
+ <text_size> <!-- footer link color -->
491
+ <label>font size</label>
492
+ <frontend_type>text</frontend_type>
493
+ <sort_order>6</sort_order>
494
+ <show_in_default>1</show_in_default>
495
+ <show_in_website>1</show_in_website>
496
+ <show_in_store>1</show_in_store>
497
+ <comment>If empty, It will take the default font size</comment>
498
+ </text_size>
499
+
500
+ <text translate="label"> <!-- line style -->
501
+ <label><![CDATA[<span style="color:red">line</span>]]></label>
502
+ <frontend_type>label</frontend_type>
503
+ <sort_order>7</sort_order>
504
+ <show_in_default>1</show_in_default>
505
+ <show_in_website>1</show_in_website>
506
+ <show_in_store>1</show_in_store>
507
+ </text>
508
+
509
+ <line_color> <!-- line color -->
510
+ <label>color</label>
511
+ <frontend_type>text</frontend_type>
512
+ <validate>color</validate>
513
+ <sort_order>8</sort_order>
514
+ <show_in_default>1</show_in_default>
515
+ <show_in_website>1</show_in_website>
516
+ <show_in_store>1</show_in_store>
517
+ </line_color>
518
+
519
+ <line_size> <!-- footer line size -->
520
+ <label>size</label>
521
+ <frontend_type>text</frontend_type>
522
+ <sort_order>9</sort_order>
523
+ <show_in_default>1</show_in_default>
524
+ <show_in_website>1</show_in_website>
525
+ <show_in_store>1</show_in_store>
526
+ <comment>If empty, It will take 10px as default line size</comment>
527
+ </line_size>
528
+
529
  </fields>
530
  </footer>
531
 
app/design/frontend/default/responsive/layout/ajaxlogin.xml ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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/cms.xml ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Academic Free License (AFL 3.0)
9
+ * that is bundled with this package in the file LICENSE_AFL.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/afl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magentocommerce.com so we can send you a copy immediately.
15
+ *
16
+ * DISCLAIMER
17
+ *
18
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
19
+ * versions in the future. If you wish to customize Magento for your
20
+ * needs please refer to http://www.magentocommerce.com for more information.
21
+ *
22
+ * @category design
23
+ * @package base_default
24
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
25
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
+ */
27
+ -->
28
+ <layout version="0.1.0">
29
+ <!--
30
+ Default layout, loads most of the pages
31
+ -->
32
+
33
+ <default>
34
+ <reference name="footer">
35
+ <block type="cms/block" name="cms_footer_links" before="footer_links">
36
+ <!--
37
+ The content of this block is taken from the database by its block_id.
38
+ You can manage it in admin CMS -> Static Blocks
39
+ -->
40
+ <action method="setBlockId"><block_id>footer_links</block_id></action>
41
+ </block>
42
+ </reference>
43
+ </default>
44
+
45
+ <cms_page translate="label">
46
+ <label>CMS Pages (All)</label>
47
+ <reference name="content">
48
+ <block type="core/template" name="page_content_heading" template="cms/content_heading.phtml"/>
49
+ <block type="page/html_wrapper" name="cms.wrapper" translate="label">
50
+ <label>CMS Content Wrapper</label>
51
+ <action method="setElementClass"><value>std row</value></action>
52
+ <block type="cms/page" name="cms_page"/>
53
+ </block>
54
+ </reference>
55
+ </cms_page>
56
+
57
+ <cms_index_index translate="label">
58
+ <label>CMS Home Page</label>
59
+ </cms_index_index>
60
+
61
+ <cms_index_defaultindex>
62
+ <remove name="right"/>
63
+ <remove name="left"/>
64
+
65
+ <reference name="root">
66
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
67
+ </reference>
68
+ <reference name="content">
69
+ <block type="core/template" name="default_home_page" template="cms/default/home.phtml"/>
70
+ </reference>
71
+ </cms_index_defaultindex>
72
+
73
+ <cms_index_noroute translate="label">
74
+ <label>CMS No-Route Page</label>
75
+ </cms_index_noroute>
76
+
77
+ <cms_index_defaultnoroute>
78
+ <remove name="right"/>
79
+ <remove name="left"/>
80
+
81
+ <reference name="root">
82
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
83
+ </reference>
84
+ <reference name="content">
85
+ <block type="core/template" name="default_no_route" template="cms/default/no-route.phtml"/>
86
+ </reference>
87
+ </cms_index_defaultnoroute>
88
+
89
+ </layout>
app/design/frontend/default/responsive/layout/page.xml CHANGED
@@ -61,7 +61,11 @@ 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
- </block>
 
 
 
 
65
 
66
  <block type="core/text_list" name="after_body_start" as="after_body_start" translate="label">
67
  <label>Page Top</label>
@@ -115,6 +119,12 @@ Default layout, loads most of the pages
115
  </block>
116
 
117
  <block type="core/profiler" output="toHtml" name="core_profiler"/>
 
 
 
 
 
 
118
  </default>
119
 
120
  <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
+
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
  </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">
app/design/frontend/default/responsive/layout/paypal.xml ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Academic Free License (AFL 3.0)
9
+ * that is bundled with this package in the file LICENSE_AFL.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/afl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magentocommerce.com so we can send you a copy immediately.
15
+ *
16
+ * DISCLAIMER
17
+ *
18
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
19
+ * versions in the future. If you wish to customize Magento for your
20
+ * needs please refer to http://www.magentocommerce.com for more information.
21
+ *
22
+ * @category design
23
+ * @package base_default
24
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
25
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
+ */
27
+
28
+ -->
29
+ <layout version="0.1.0">
30
+ <checkout_cart_index>
31
+ <reference name="checkout.cart.top_methods">
32
+ <block type="paypal/express_shortcut" name="checkout.cart.methods.paypal_express.top" before="-" template="paypal/express/shortcut.phtml">
33
+ <action method="setIsQuoteAllowed"><value>1</value></action>
34
+ </block>
35
+ </reference>
36
+
37
+ <reference name="checkout.cart.methods">
38
+ <block type="paypal/express_shortcut" name="checkout.cart.methods.paypal_express.bottom" before="-" template="paypal/express/shortcut.phtml">
39
+ <action method="setIsQuoteAllowed"><value>1</value></action>
40
+ </block>
41
+ </reference>
42
+
43
+ <update handle="SHORTCUT_popup" />
44
+ </checkout_cart_index>
45
+
46
+ <paypal_express_review translate="label">
47
+ <label>PayPal Express Order Review Form</label>
48
+ <remove name="right"/>
49
+ <remove name="left"/>
50
+
51
+ <reference name="root">
52
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
53
+ </reference>
54
+ <reference name="content">
55
+ <block type="paypal/express_review" name="paypal.express.review" template="paypal/express/review.phtml">
56
+ <block type="paypal/express_review_billing" name="express.review.billing" as="billing" template="paypal/express/review/address.phtml"/>
57
+ <block type="paypal/express_review_shipping" name="express.review.shipping" as="shipping" template="paypal/express/review/address.phtml"/>
58
+ <block type="paypal/express_review" name="express.review.shipping.method" as="shipping_method" template="paypal/express/review/shipping/method.phtml"/>
59
+ <block type="paypal/express_review_details" name="paypal.express.review.details" as="details" template="paypal/express/review/details.phtml">
60
+ <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/onepage/review/item.phtml</template></action>
61
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/onepage/review/item.phtml</template></action>
62
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/onepage/review/item.phtml</template></action>
63
+ <block type="checkout/cart_totals" name="paypal.express.review.details.totals" as="totals" template="checkout/onepage/review/totals.phtml"/>
64
+ </block>
65
+ <block type="checkout/agreements" name="paypal.express.review.details.agreements" as="agreements" template="checkout/onepage/agreements.phtml"/>
66
+ </block>
67
+ </reference>
68
+ <reference name="head">
69
+ <action method="addItem"><type>skin_js</type><name>js/checkout/review.js</name></action>
70
+ </reference>
71
+ <block type="core/text_list" name="additional.product.info" />
72
+ </paypal_express_review>
73
+
74
+ <paypal_express_review_details>
75
+ <block type="paypal/express_review_details" name="root" output="toHtml" template="paypal/express/review/details.phtml">
76
+ <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/onepage/review/item.phtml</template></action>
77
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/onepage/review/item.phtml</template></action>
78
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/onepage/review/item.phtml</template></action>
79
+ <block type="checkout/cart_totals" name="paypal.express.review.details.totals" as="totals" template="checkout/onepage/review/totals.phtml"/>
80
+ </block>
81
+ </paypal_express_review_details>
82
+
83
+ <!--
84
+ Available logo types can be assigned with action="setLogoType":
85
+ - wePrefer_150x60
86
+ - wePrefer_150x40
87
+ - nowAccepting_150x60
88
+ - nowAccepting_150x40
89
+ - paymentsBy_150x60
90
+ - paymentsBy_150x40
91
+ - shopNowUsing_150x60
92
+ - shopNowUsing_150x40
93
+ -->
94
+ <catalog_product_view>
95
+ <reference name="product.info.addtocart">
96
+ <block type="page/html_wrapper" name="product.info.addtocart.paypal.wrapper" translate="label">
97
+ <label>PayPal Express Checkout Shortcut Wrapper</label>
98
+ <block type="paypal/express_shortcut" name="product.info.addtocart.paypal" template="paypal/express/shortcut.phtml">
99
+ <action method="setIsInCatalogProduct"><value>1</value></action>
100
+ </block>
101
+ </block>
102
+ </reference>
103
+ <update handle="SHORTCUT_popup" />
104
+ <!-- <reference name="right">
105
+ <block type="paypal/logo" name="paypal.partner.right.logo" template="paypal/partner/logo.phtml">
106
+ <action method="setLogoType"><value>wePrefer_150x60</value></action>
107
+ </block>
108
+ </reference> -->
109
+ </catalog_product_view>
110
+
111
+ <catalog_category_default>
112
+ <update handle="SHORTCUT_popup" />
113
+ <!-- <reference name="right">
114
+ <block type="paypal/logo" name="paypal.partner.right.logo" template="paypal/partner/logo.phtml"/>
115
+ </reference> -->
116
+ </catalog_category_default>
117
+
118
+ <catalog_category_layered>
119
+ <update handle="SHORTCUT_popup" />
120
+ <!-- <reference name="right">
121
+ <block type="paypal/logo" name="paypal.partner.right.logo" template="paypal/partner/logo.phtml"/>
122
+ </reference> -->
123
+ </catalog_category_layered>
124
+
125
+ <catalog_product_compare_index>
126
+ <update handle="SHORTCUT_popup" />
127
+ </catalog_product_compare_index>
128
+
129
+ <catalogsearch_result_index>
130
+ <update handle="SHORTCUT_popup" />
131
+ </catalogsearch_result_index>
132
+
133
+ <catalogsearch_advanced_result>
134
+ <update handle="SHORTCUT_popup" />
135
+ </catalogsearch_advanced_result>
136
+
137
+ <tag_product_list>
138
+ <update handle="SHORTCUT_popup" />
139
+ </tag_product_list>
140
+ <tag_customer_view>
141
+ <update handle="SHORTCUT_popup" />
142
+ </tag_customer_view>
143
+
144
+ <wishlist_index_index>
145
+ <update handle="SHORTCUT_popup" />
146
+ </wishlist_index_index>
147
+ <review_product_list>
148
+ <update handle="SHORTCUT_popup" />
149
+ </review_product_list>
150
+
151
+ <checkout_onepage_success>
152
+ <update handle="SHORTCUT_popup" />
153
+ </checkout_onepage_success>
154
+ <checkout_onepage_failure>
155
+ <update handle="SHORTCUT_popup" />
156
+ </checkout_onepage_failure>
157
+
158
+ <cms_index_index>
159
+ <!-- <reference name="right">
160
+ <block type="paypal/logo" name="paypal.partner.right.logo" template="paypal/partner/logo.phtml"/>
161
+ </reference> -->
162
+ </cms_index_index>
163
+
164
+ <default>
165
+ <reference name="topCart.extra_actions">
166
+ <block type="paypal/express_shortcut" name="paypal.partner.top_cart.shortcut" template="paypal/express/shortcut.phtml"/>
167
+ </reference>
168
+ <reference name="cart_sidebar.extra_actions">
169
+ <block type="paypal/express_shortcut" name="paypal.partner.cart_sidebar.shortcut" template="paypal/express/shortcut.phtml"/>
170
+ </reference>
171
+ </default>
172
+
173
+ <checkout_onepage_review>
174
+ <reference name="checkout.onepage.review.info.items.after">
175
+ <block type="paypal/iframe" name="paypal.iframe" />
176
+ </reference>
177
+ <reference name="checkout.onepage.review.button">
178
+ <action method="setTemplate"><template helper="paypal/hss/getReviewButtonTemplate"><name>paypal/hss/review/button.phtml</name><block>checkout.onepage.review.button</block></template></action>
179
+ </reference>
180
+ </checkout_onepage_review>
181
+
182
+ <paypal_payflow_link_iframe>
183
+ <block type="paypal/payflow_link_iframe" name="payflow.link.iframe" template="paypal/payflowlink/form.phtml" />
184
+ </paypal_payflow_link_iframe>
185
+
186
+ <paypal_payflow_advanced_iframe>
187
+ <block type="paypal/payflow_advanced_iframe" name="payflow.advanced.iframe" template="paypal/payflowadvanced/form.phtml" />
188
+ </paypal_payflow_advanced_iframe>
189
+
190
+ <paypal_hosted_pro_iframe>
191
+ <block type="paypal/hosted_pro_iframe" name="hosted.pro.iframe" template="paypal/hss/form.phtml"/>
192
+ </paypal_hosted_pro_iframe>
193
+
194
+ <SHORTCUT_popup>
195
+ <reference name="product.tooltip">
196
+ <block type="page/html_wrapper" name="product.info.addtocart.paypal.wrapper" translate="label">
197
+ <block type="paypal/express_shortcut" name="product.info.addtocart.paypal" template="paypal/express/shortcut.phtml">
198
+ <action method="setIsInCatalogProduct"><value>1</value></action>
199
+ <action method="setShowOrPosition"><value>after</value></action>
200
+ </block>
201
+ </block>
202
+ </reference>
203
+ </SHORTCUT_popup>
204
+ </layout>
app/design/frontend/default/responsive/template/ajaxlogin/quick.phtml ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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/catalog/layer/state.phtml CHANGED
@@ -34,7 +34,7 @@
34
  <?php $_filters = $this->getActiveFilters() ?>
35
  <?php if(!empty($_filters)): ?>
36
  <div class="currently">
37
- <p class="block-subtitle"><?php echo $this->__('Currently Shopping by:') ?></p>
38
  <ol>
39
  <?php foreach ($_filters as $_filter): ?>
40
  <li>
34
  <?php $_filters = $this->getActiveFilters() ?>
35
  <?php if(!empty($_filters)): ?>
36
  <div class="currently">
37
+ <p class="block-subtitle"><?php echo $this->__('Shopping by:') ?></p>
38
  <ol>
39
  <?php foreach ($_filters as $_filter): ?>
40
  <li>
app/design/frontend/default/responsive/template/catalog/product/list/toolbar.phtml CHANGED
@@ -54,7 +54,7 @@
54
  <?php echo $_limit ?>
55
  </option>
56
  <?php endforeach; ?>
57
- </select> <?php echo $this->__('per page') ?>
58
  </div>
59
  </div>
60
 
54
  <?php echo $_limit ?>
55
  </option>
56
  <?php endforeach; ?>
57
+ </select> <?php echo $this->__('/ page') ?>
58
  </div>
59
  </div>
60
 
app/design/frontend/default/responsive/template/catalog/product/view/media.phtml ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ * Product media data template
29
+ *
30
+ * @see Mage_Catalog_Block_Product_View_Media
31
+ */
32
+ ?>
33
+ <?php
34
+ $_product = $this->getProduct();
35
+ $_helper = $this->helper('catalog/output');
36
+ ?>
37
+ <?php if ($_product->getImage() != 'no_selection' && $_product->getImage()): ?>
38
+ <p class="product-image product-image-zoom">
39
+ <?php
40
+ $_img = '<img id="image" src="'.$this->helper('catalog/image')->init($_product, 'image').'" alt="'.$this->escapeHtml($this->getImageLabel()).'" title="'.$this->escapeHtml($this->getImageLabel()).'" />';
41
+ echo $_helper->productAttribute($_product, $_img, 'image');
42
+ ?>
43
+ </p>
44
+ <p class="zoom-notice" id="track_hint"><?php echo $this->__('Double click on above image to view full picture') ?></p>
45
+ <div class="zoom">
46
+ <img id="zoom_out" src="<?php echo $this->getSkinUrl('images/slider_btn_zoom_out.gif') ?>" alt="<?php echo $this->__('Zoom Out') ?>" title="<?php echo $this->__('Zoom Out') ?>" class="btn-zoom-out" />
47
+ <div id="track">
48
+ <div id="handle"></div>
49
+ </div>
50
+ <img id="zoom_in" src="<?php echo $this->getSkinUrl('images/slider_btn_zoom_in.gif') ?>" alt="<?php echo $this->__('Zoom In') ?>" title="<?php echo $this->__('Zoom In') ?>" class="btn-zoom-in" />
51
+ </div>
52
+ <script type="text/javascript">
53
+ //<![CDATA[
54
+ Event.observe(window, 'load', function() {
55
+ product_zoom = new Product.Zoom('image', 'track', 'handle', 'zoom_in', 'zoom_out', 'track_hint');
56
+ });
57
+ //]]>
58
+ </script>
59
+ <?php else: ?>
60
+ <p class="product-image">
61
+ <?php
62
+ $_img = '<img src="'.$this->helper('catalog/image')->init($_product, 'image')->resize(265).'" alt="'.$this->escapeHtml($this->getImageLabel()).'" title="'.$this->escapeHtml($this->getImageLabel()).'" />';
63
+ echo $_helper->productAttribute($_product, $_img, 'image');
64
+ ?>
65
+ </p>
66
+ <?php endif; ?>
67
+ <?php if (count($this->getGalleryImages()) > 0): ?>
68
+ <div class="more-views">
69
+ <h2><?php echo $this->__('More Views') ?></h2>
70
+ <ul>
71
+ <?php foreach ($this->getGalleryImages() as $_image): ?>
72
+ <li>
73
+ <a href="#" onclick="popWin('<?php echo $this->getGalleryUrl($_image) ?>', 'gallery', 'width=300,height=300,left=0,top=0,location=no,status=yes,scrollbars=yes,resizable=yes'); return false;" title="<?php echo $this->escapeHtml($_image->getLabel()) ?>"><img src="<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile())->resize(56); ?>" width="56" height="56" alt="<?php echo $this->escapeHtml($_image->getLabel()) ?>" /></a>
74
+ </li>
75
+ <?php endforeach; ?>
76
+ </ul>
77
+ </div>
78
+ <?php endif; ?>
app/design/frontend/default/responsive/template/catalogsearch/form.mini.phtml CHANGED
@@ -32,13 +32,21 @@ $catalogSearchHelper = $this->helper('catalogsearch');
32
  <!-- <label for="search"><?php echo $this->__('Search:') ?></label>-->
33
  <div class="input-group">
34
  <input id="search" type="text" name="<?php echo $catalogSearchHelper->getQueryParamName() ?>" value="<?php echo $catalogSearchHelper->getEscapedQueryText() ?>" class="input-text form-control" maxlength="<?php echo $catalogSearchHelper->getMaxQueryLength();?>" />
35
- <span class="input-group-addon"><i class="fa fa-search"></i></span>
 
 
 
 
 
 
 
 
 
36
  </div>
37
- <!--<button type="submit" title="<?php echo $this->__('Search') ?>" class="button"><span><span><?php echo $this->__('Search') ?></span></span></button>-->
38
  <div id="search_autocomplete" class="search-autocomplete"></div>
39
  <script type="text/javascript">
40
  //<![CDATA[
41
- var searchForm = new Varien.searchForm('search_mini_form', 'search', '<?php echo $this->__('Search entire store here...') ?>');
42
  searchForm.initAutocomplete('<?php echo $catalogSearchHelper->getSuggestUrl() ?>', 'search_autocomplete');
43
  //]]>
44
  </script>
32
  <!-- <label for="search"><?php echo $this->__('Search:') ?></label>-->
33
  <div class="input-group">
34
  <input id="search" type="text" name="<?php echo $catalogSearchHelper->getQueryParamName() ?>" value="<?php echo $catalogSearchHelper->getEscapedQueryText() ?>" class="input-text form-control" maxlength="<?php echo $catalogSearchHelper->getMaxQueryLength();?>" />
35
+ <!-- <span class="input-group-addon"><i class="fa fa-search"></i></span> -->
36
+ <div class="input-group-btn">
37
+ <!-- <button type="submit" title="<?php echo $this->__('Search') ?>" class="btn btn-info dropdown-toggle" data-toggle="dropdown"> -->
38
+ <button type="button" title="<?php echo $this->__('More Options') ?>" class="btn btn-info dropdown-toggle" data-toggle="dropdown">
39
+ <?php echo $this->__('More Options') ?><span class="caret"></span></button>
40
+ <ul class="dropdown-menu pull-right" role="menu">
41
+ <li><a href="<?php echo Mage::getBaseUrl() . 'catalogsearch/advanced/' ?>">Advanced Search</a></li>
42
+ <li><a href="<?php echo Mage::getBaseUrl() . 'catalogsearch/term/popular/' ?>">Search Terms</a></li>
43
+ </ul>
44
+ </div>
45
  </div>
 
46
  <div id="search_autocomplete" class="search-autocomplete"></div>
47
  <script type="text/javascript">
48
  //<![CDATA[
49
+ var searchForm = new Varien.searchForm('search_mini_form', 'search', '<?php echo $this->__('Search keywords and Click enter.') ?>');
50
  searchForm.initAutocomplete('<?php echo $catalogSearchHelper->getSuggestUrl() ?>', 'search_autocomplete');
51
  //]]>
52
  </script>
app/design/frontend/default/responsive/template/checkout/cart.phtml CHANGED
@@ -32,17 +32,22 @@
32
  */
33
  ?>
34
  <div class="cart">
35
- <div class="page-title title-buttons">
36
- <h1><?php echo $this->__('Shopping Cart') ?></h1>
37
- <?php if(!$this->hasError()): ?>
38
- <ul class="checkout-types">
39
- <?php foreach ($this->getMethods('top_methods') as $method): ?>
40
- <?php if ($methodHtml = $this->getMethodHtml($method)): ?>
41
- <li><?php echo $methodHtml; ?></li>
 
 
 
 
 
 
 
42
  <?php endif; ?>
43
- <?php endforeach; ?>
44
- </ul>
45
- <?php endif; ?>
46
  </div>
47
  <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
48
  <?php echo $this->getChildHtml('form_before') ?>
@@ -77,7 +82,7 @@
77
  <th rowspan="<?php echo $mergedCells; ?>"><span class="nobr"><?php echo $this->__('Product Name') ?></span></th>
78
  <th class="item-editable" rowspan="<?php echo $mergedCells; ?>"></th>
79
  <?php if ($this->helper('wishlist')->isAllowInCart()) : ?>
80
- <th rowspan="<?php echo $mergedCells; ?>" class="a-center"><span class="nobr"><?php echo $this->__('Move to Wishlist') ?></span></th>
81
  <?php endif ?>
82
  <th class="a-center" colspan="<?php echo $mergedCells; ?>"><span class="nobr"><?php echo $this->__('Unit Price') ?></span></th>
83
  <th rowspan="<?php echo $mergedCells; ?>" class="a-center"><?php echo $this->__('Qty') ?></th>
@@ -96,12 +101,6 @@
96
  <tfoot>
97
  <tr>
98
  <td colspan="50" class="a-right">
99
- <?php if($this->getContinueShoppingUrl()): ?>
100
- <button type="button" title="<?php echo $this->__('Continue Shopping') ?>" class="button btn-continue btn btn-default" onclick="setLocation('<?php echo $this->getContinueShoppingUrl() ?>')"><?php echo $this->__('Continue Shopping') ?></button>
101
- <!-- <button type="button" title="<?php echo $this->__('Continue Shopping') ?>" class="button btn-continue" onclick="setLocation('<?php echo $this->getContinueShoppingUrl() ?>')"><span><span><?php echo $this->__('Continue Shopping') ?></span></span></button>-->
102
- <?php endif; ?>
103
- <button type="submit" name="update_cart_action" value="update_qty" title="<?php echo $this->__('Update Shopping Cart'); ?>" class="button btn-update btn btn-default"><?php echo $this->__('Update Shopping Cart'); ?></button>
104
- <button type="submit" name="update_cart_action" value="empty_cart" title="<?php echo $this->__('Clear Shopping Cart'); ?>" class="button btn-empty btn btn-default" id="empty_cart_button"><?php echo $this->__('Clear Shopping Cart'); ?></button>
105
  <!--[if lt IE 8]>
106
  <input type="hidden" id="update_cart_action_container" />
107
  <script type="text/javascript">
@@ -133,6 +132,14 @@
133
  <?php endforeach ?>
134
  </tbody>
135
  </table>
 
 
 
 
 
 
 
 
136
  <script type="text/javascript">decorateTable('shopping-cart-table')</script>
137
  </fieldset>
138
  </form>
32
  */
33
  ?>
34
  <div class="cart">
35
+ <div class="page-title title-buttons row">
36
+ <div class="col-sm-6 col-xs-12">
37
+ <h1><?php echo $this->__('Shopping Cart') ?></h1>
38
+ </div>
39
+
40
+ <div class="col-sm-6 col-xs-12">
41
+ <?php if(!$this->hasError()): ?>
42
+ <ul class="checkout-types">
43
+ <?php foreach ($this->getMethods('top_methods') as $method): ?>
44
+ <?php if ($methodHtml = $this->getMethodHtml($method)): ?>
45
+ <li><?php echo $methodHtml; ?></li>
46
+ <?php endif; ?>
47
+ <?php endforeach; ?>
48
+ </ul>
49
  <?php endif; ?>
50
+ </div>
 
 
51
  </div>
52
  <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
53
  <?php echo $this->getChildHtml('form_before') ?>
82
  <th rowspan="<?php echo $mergedCells; ?>"><span class="nobr"><?php echo $this->__('Product Name') ?></span></th>
83
  <th class="item-editable" rowspan="<?php echo $mergedCells; ?>"></th>
84
  <?php if ($this->helper('wishlist')->isAllowInCart()) : ?>
85
+ <th class="col-wishlist" rowspan="<?php echo $mergedCells; ?>" class="a-center"><span class="nobr"><?php echo $this->__('Move to Wishlist') ?></span></th>
86
  <?php endif ?>
87
  <th class="a-center" colspan="<?php echo $mergedCells; ?>"><span class="nobr"><?php echo $this->__('Unit Price') ?></span></th>
88
  <th rowspan="<?php echo $mergedCells; ?>" class="a-center"><?php echo $this->__('Qty') ?></th>
101
  <tfoot>
102
  <tr>
103
  <td colspan="50" class="a-right">
 
 
 
 
 
 
104
  <!--[if lt IE 8]>
105
  <input type="hidden" id="update_cart_action_container" />
106
  <script type="text/javascript">
132
  <?php endforeach ?>
133
  </tbody>
134
  </table>
135
+ <div class="btncartgroup btn-group">
136
+ <?php if($this->getContinueShoppingUrl()): ?>
137
+ <button type="button" title="<?php echo $this->__('Continue Shopping') ?>" class="button btn-continue btn btn-default" onclick="setLocation('<?php echo $this->getContinueShoppingUrl() ?>')"><?php echo $this->__('Continue Shopping') ?></button>
138
+ <!--<button type="button" title="<?php echo $this->__('Continue Shopping') ?>" class="button btn-continue" onclick="setLocation('<?php echo $this->getContinueShoppingUrl() ?>')"><span><span><?php echo $this->__('Continue Shopping') ?></span></span></button>-->
139
+ <?php endif; ?>
140
+ <button type="submit" name="update_cart_action" value="update_qty" title="<?php echo $this->__('Update Shopping Cart'); ?>" class="button btn-update btn btn-default"><?php echo $this->__('Update Shopping Cart'); ?></button>
141
+ <button type="submit" name="update_cart_action" value="empty_cart" title="<?php echo $this->__('Clear Shopping Cart'); ?>" class="button btn-empty btn btn-default" id="empty_cart_button"><?php echo $this->__('Clear Shopping Cart'); ?></button>
142
+ </div>
143
  <script type="text/javascript">decorateTable('shopping-cart-table')</script>
144
  </fieldset>
145
  </form>
app/design/frontend/default/responsive/template/checkout/cart/item/default.phtml CHANGED
@@ -73,7 +73,7 @@ $canApplyMsrp = Mage::helper('catalog')->canApplyMsrp($_item->getProduct(), Mage
73
  <?php endif ?>
74
  </td>
75
  <?php if ($this->helper('wishlist')->isAllowInCart()) : ?>
76
- <td class="a-center">
77
  <?php if ($isVisibleProduct): ?>
78
  <a href="<?php echo $this->helper('wishlist')->getMoveFromCartUrl($_item->getId()); ?>" class="link-wishlist use-ajax"><?php echo $this->__('Move'); ?></a>
79
  <?php endif ?>
73
  <?php endif ?>
74
  </td>
75
  <?php if ($this->helper('wishlist')->isAllowInCart()) : ?>
76
+ <td class="col-wishlist a-center">
77
  <?php if ($isVisibleProduct): ?>
78
  <a href="<?php echo $this->helper('wishlist')->getMoveFromCartUrl($_item->getId()); ?>" class="link-wishlist use-ajax"><?php echo $this->__('Move'); ?></a>
79
  <?php endif ?>
app/design/frontend/default/responsive/template/checkout/onepage/review/info.phtml ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 echo $this->getChildHtml('items_before'); ?>
28
+ <div id="checkout-review-table-wrapper">
29
+ <table class="data-table" id="checkout-review-table">
30
+ <?php if ($this->helper('tax')->displayCartBothPrices()): $colspan = $rowspan = 2; else: $colspan = $rowspan = 1; endif; ?>
31
+ <col />
32
+ <col width="1" />
33
+ <col width="1" />
34
+ <col width="1" />
35
+ <?php if ($this->helper('tax')->displayCartBothPrices()): ?>
36
+ <col width="1" />
37
+ <col width="1" />
38
+ <?php endif; ?>
39
+ <thead>
40
+ <tr>
41
+ <th rowspan="<?php echo $rowspan ?>"><?php echo $this->__('Product Name') ?></th>
42
+ <th colspan="<?php echo $colspan ?>" class="a-center"><?php echo $this->__('Price') ?></th>
43
+ <th rowspan="<?php echo $rowspan ?>" class="a-center"><?php echo $this->__('Qty') ?></th>
44
+ <th colspan="<?php echo $colspan ?>" class="a-center"><?php echo $this->__('Subtotal') ?></th>
45
+ </tr>
46
+ <?php if ($this->helper('tax')->displayCartBothPrices()): ?>
47
+ <tr>
48
+ <th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
49
+ <th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
50
+ <th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
51
+ <th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
52
+ </tr>
53
+ <?php endif; ?>
54
+ </thead>
55
+ <?php echo $this->getChildHtml('totals'); ?>
56
+ <tbody>
57
+ <?php foreach($this->getItems() as $_item): ?>
58
+ <?php echo $this->getItemHtml($_item)?>
59
+ <?php endforeach ?>
60
+ </tbody>
61
+ </table>
62
+ </div>
63
+ <?php echo $this->getChildHtml('items_after'); ?>
64
+ <script type="text/javascript">
65
+ //<![CDATA[
66
+ decorateTable('checkout-review-table');
67
+ truncateOptions();
68
+ //]]>
69
+ </script>
70
+ <div id="checkout-review-submit">
71
+ <?php echo $this->getChildHtml('agreements') ?>
72
+ <div class="buttons-set row" id="review-buttons-container">
73
+ <div class="col-sm-6 col-xs-12">
74
+ <p class="f-left"><?php echo $this->__('Forgot an Item?') ?> <a href="<?php echo $this->getUrl('checkout/cart') ?>"><?php echo $this->__('Edit Your Cart') ?></a></p>
75
+ </div>
76
+ <div class="col-sm-6 col-xs-12">
77
+ <?php echo $this->getChildHtml('button') ?>
78
+ <span class="please-wait" id="review-please-wait" style="display:none;">
79
+ <img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader.gif') ?>" alt="<?php echo $this->__('Submitting order information...') ?>" title="<?php echo $this->__('Submitting order information...') ?>" class="v-middle" /> <?php echo $this->__('Submitting order information...') ?>
80
+ </span>
81
+ </div>
82
+ </div>
83
+ <script type="text/javascript">
84
+ //<![CDATA[
85
+ review = new Review('<?php echo $this->getUrl('checkout/onepage/saveOrder', array('form_key' => Mage::getSingleton('core/session')->getFormKey())) ?>', '<?php echo $this->getUrl('checkout/onepage/success') ?>', $('checkout-agreements'));
86
+ //]]>
87
+ </script>
88
+ </div>
app/design/frontend/default/responsive/template/page/2columns-right.phtml CHANGED
@@ -38,6 +38,8 @@
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">
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">
app/design/frontend/default/responsive/template/page/html/footer.phtml ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <div class="footer-container">
28
+ <div class="footer row">
29
+ <?php
30
+ $footerlayout = Mage::getStoreConfig('layout/footer/layout');
31
+ if ($footerlayout == null or $footerlayout == 'one_column'){
32
+ echo $this->getChildHtml();
33
+ echo '<address>' . $this->getCopyright() . '</address>';
34
+ }else{
35
+ ?>
36
+ <div class="footer-left col-sm-6 col-xs-12">
37
+ <?php echo $this->getChildHtml() ?>
38
+ <!-- <p class="bugs"><?php echo $this->__('Help Us to Keep Magento Healthy') ?> - <a href="http://www.magentocommerce.com/bug-tracking" onclick="this.target='_blank'"><strong><?php echo $this->__('Report All Bugs') ?></strong></a> <?php echo $this->__('(ver. %s)', Mage::getVersion()) ?></p> -->
39
+ </div>
40
+ <div class="footer-right col-sm-6 col-xs-12">
41
+ <address><?php echo $this->getCopyright() ?></address>
42
+ </div>
43
+ <?php
44
+ }
45
+ ?>
46
+
47
+ </div>
48
+ </div>
app/design/frontend/default/responsive/template/sales/order/recent.phtml CHANGED
@@ -44,7 +44,7 @@
44
  <th class="col-order-date"><?php echo $this->__('Date') ?></th>
45
  <th class="col-ship-to"><?php echo $this->__('Ship To') ?></th>
46
  <th class="col-order-total"><span class="nobr"><?php echo $this->__('Order Total') ?></span></th>
47
- <th><?php echo $this->__('Status') ?></th>
48
  <th>&nbsp;</th>
49
  </tr>
50
  </thead>
@@ -55,7 +55,7 @@
55
  <td class="col-order-date"><span class="nobr"><?php echo $this->formatDate($_order->getCreatedAtStoreDate()) ?></span></td>
56
  <td class="col-ship-to"><?php echo $_order->getShippingAddress() ? $this->escapeHtml($_order->getShippingAddress()->getName()) : '&nbsp;' ?></td>
57
  <td class="col-order-total"><?php echo $_order->formatPrice($_order->getGrandTotal()) ?></td>
58
- <td><em><?php echo $_order->getStatusLabel() ?></em></td>
59
  <td class="a-center">
60
  <span class="nobr">
61
  <a href="<?php echo $this->getViewUrl($_order) ?>"><?php echo $this->__('View Order') ?></a>
44
  <th class="col-order-date"><?php echo $this->__('Date') ?></th>
45
  <th class="col-ship-to"><?php echo $this->__('Ship To') ?></th>
46
  <th class="col-order-total"><span class="nobr"><?php echo $this->__('Order Total') ?></span></th>
47
+ <th class="col-order-status"><?php echo $this->__('Status') ?></th>
48
  <th>&nbsp;</th>
49
  </tr>
50
  </thead>
55
  <td class="col-order-date"><span class="nobr"><?php echo $this->formatDate($_order->getCreatedAtStoreDate()) ?></span></td>
56
  <td class="col-ship-to"><?php echo $_order->getShippingAddress() ? $this->escapeHtml($_order->getShippingAddress()->getName()) : '&nbsp;' ?></td>
57
  <td class="col-order-total"><?php echo $_order->formatPrice($_order->getGrandTotal()) ?></td>
58
+ <td class="col-order-status"><em><?php echo $_order->getStatusLabel() ?></em></td>
59
  <td class="a-center">
60
  <span class="nobr">
61
  <a href="<?php echo $this->getViewUrl($_order) ?>"><?php echo $this->__('View Order') ?></a>
app/design/frontend/default/responsive/template/tag/list.phtml CHANGED
@@ -38,13 +38,15 @@
38
  <?php endif; ?>
39
  <form id="addTagForm" action="<?php echo $this->getFormAction(); ?>" method="get">
40
  <div class="form-add">
41
- <label for="productTagName"><?php echo $this->__('Add Your Tags:') ?></label>
42
- <div class="input-box">
43
  <input type="text" class="input-text required-entry form-control" name="productTagName" id="productTagName" />
 
 
 
 
 
44
  </div>
45
- <button type="button" title="<?php echo $this->__('Add Tags') ?>" class="button btn btn-default" onclick="submitTagForm()">
46
- <?php echo $this->__('Add Tags') ?>
47
- </button>
48
  </div>
49
  </form>
50
  <p class="note"><?php echo $this->__("Use spaces to separate tags. Use single quotes (') for phrases.") ?></p>
38
  <?php endif; ?>
39
  <form id="addTagForm" action="<?php echo $this->getFormAction(); ?>" method="get">
40
  <div class="form-add">
41
+ <label for="productTagName"><?php echo $this->__('Add Your Tags:') ?></label>
42
+ <div class="input-group">
43
  <input type="text" class="input-text required-entry form-control" name="productTagName" id="productTagName" />
44
+ <div class="input-group-btn">
45
+ <button type="button" title="<?php echo $this->__('Add Tags') ?>" class="button btn btn-default" onclick="submitTagForm()">
46
+ <?php echo $this->__('Add Tags') ?>
47
+ </button>
48
+ </div>
49
  </div>
 
 
 
50
  </div>
51
  </form>
52
  <p class="note"><?php echo $this->__("Use spaces to separate tags. Use single quotes (') for phrases.") ?></p>
app/design/frontend/default/responsive/template/wishlist/sidebar.phtml ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ /* @var $this Mage_Wishlist_Block_Customer_Sidebar */
27
+ ?>
28
+ <?php if ($this->helper('wishlist')->isAllow()) : ?>
29
+ <div class="block block-wishlist">
30
+ <div class="block-title">
31
+ <strong><span><?php echo $this->getTitle(); ?></span></strong>
32
+ </div>
33
+ <div class="block-content">
34
+ <p class="block-subtitle"><?php echo $this->__('Last Added Items') ?></p>
35
+ <?php if ($this->hasWishlistItems()): ?>
36
+ <ol class="mini-products-list" id="wishlist-sidebar">
37
+ <?php foreach ($this->getWishlistItems() as $_item): ?>
38
+ <?php $product = $_item->getProduct(); ?>
39
+ <li class="item">
40
+ <a href="<?php echo $this->getProductUrl($_item) ?>" title="<?php echo $this->escapeHtml($product->getName()) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($product, 'thumbnail')->resize(50); ?>" width="50" height="50" alt="<?php echo $this->escapeHtml($product->getName()) ?>" /></a>
41
+ <div class="product-details">
42
+ <a href="<?php echo $this->getItemRemoveUrl($_item) ?>" title="<?php echo $this->__('Remove This Item') ?>" onclick="return confirm('<?php echo $this->__('Are you sure you would like to remove this item from the wishlist?') ?>');" class="btn-remove"><i class="fa fa-times"></i></a>
43
+ <p class="product-name"><a href="<?php echo $this->getProductUrl($_item) ?>"><?php echo $this->escapeHtml($product->getName()) ?></a></p>
44
+ <?php echo $this->getPriceHtml($product, false, '-wishlist') ?>
45
+ <?php if ($product->isSaleable() && $product->isVisibleInSiteVisibility()): ?>
46
+ <a href="<?php echo $this->getItemAddToCartUrl($_item) ?>" class="link-cart"><?php echo $this->__('Add to Cart') ?></a>
47
+ <?php endif; ?>
48
+ </div>
49
+ </li>
50
+ <?php endforeach; ?>
51
+ </ol>
52
+ <script type="text/javascript">decorateList('wishlist-sidebar');</script>
53
+ <div class="actions">
54
+ <a href="<?php echo $this->helper('wishlist')->getListUrl() ?>"><?php echo $this->__('Go to Wishlist') ?></a>
55
+ </div>
56
+ <?php else: ?>
57
+ <p class="empty"><?php echo $this->__('You have no items in your wishlist.') ?></p>
58
+ <?php endif ?>
59
+ </div>
60
+ </div>
61
+ <?php endif ?>
package.xml CHANGED
@@ -1,39 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>responsive</name>
4
- <version>0.0.7</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>
8
  <extends/>
9
- <summary>Responsive theme for Magento Community version &#xD;
10
- &#xD;
11
- It combines&#xD;
12
- - Bootstrap v3&#xD;
13
- - HTML5 &#xD;
14
- - CSS3</summary>
15
- <description>Responsive theme for Magento Community version&#xD;
16
- &#xD;
17
- It support &#xD;
18
- &#xD;
19
- - 1280px + Wide screens&#xD;
20
- &#xD;
21
- - 960px + laptop screens&#xD;
22
- &#xD;
23
- - iPad or table horizontal&#xD;
24
- &#xD;
25
- - iPad or table portrait&#xD;
26
- &#xD;
27
- - 479px + Mobile devices&#xD;
28
- &#xD;
29
- -iPhone, Android, Windows phone and other smartphones</description>
30
- <notes>- fix scroll bar Top Menu on Mobile version&#xD;
31
- - more options to config theme at the backend&#xD;
32
- </notes>
33
  <authors><author><name>tony vu</name><user>vuductrung</user><email>vuductrung2003@gmail.com</email></author></authors>
34
- <date>2014-01-08</date>
35
- <time>01:14:51</time>
36
- <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="94951a51ebffb33bd476fc9f23366d2e"/><file name="system.xml" hash="e690f33383baaa09cdb9873083229959"/></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="c985cdf397a55cc3bffa62d7f381a4a8"/><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 name="review"><file name="button.phtml" hash="08ced3ff77fe2a821291adfbfb550aed"/></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="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="3aeaa3626e4001545d9b3073fdda0edd"/></dir><dir name="reorder"><file name="sidebar.phtml" hash="3183a9cf029313d803990083201f8636"/></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="82c758e88b2cecaeb8d6c490e4e12a8f"/><file name="homepage-example.php" hash="f8ee9d5edfee69f63f742b5b4c56ea99"/><file name="responsive.css" hash="97ed70ba89921e18d732627130da04b0"/><file name="styles.css" hash="ffe1b3320e3ba74f627657079ee412a2"/><file name="styles.php" hash="1425fa187a7b6fe1d3b096fc463d2106"/></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>
37
  <compatible/>
38
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
39
  </package>
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>
skin/frontend/default/responsive/css/ajaxlogin/login.css ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
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/extension.php DELETED
@@ -1,13 +0,0 @@
1
- <h3>Overview</h3>
2
- <p>The responsive theme is written above the Magento community base theme. </p>
3
- <!--<p>Demo <a href="http://www.asmarket.com.au/responsive">Bootstrap Theme</a></p>-->
4
- <p>Read <a href="https://www.facebook.com/notes/tvcom-magento-addon/how-to-set-up-magento-bootstrap-theme/643891698985373">How to install bootstrap theme</a></p>
5
- <p>If you have any issue to install, let us know <a href="https://www.facebook.com/tvcom.addon">here</a></p>
6
- <h3>Feature</h3>
7
- <p>+ Support all different devices such as large computer, laptop, all tablets and mobile phone</p>
8
- <p>+ Theme custom is at the Admin backend</p>
9
-
10
- <h3>Technique</h3>
11
- <p>+ Bootstrap 3</p>
12
- <p>+ Awesome font</p>
13
- <p>+ HTML 5 and CSS 3</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/responsive/css/homepage-example.php DELETED
@@ -1,86 +0,0 @@
1
- <div class="col-left side-col col-sm-3">
2
- <p class="home-callout"><a href="{{store direct_url="apparel/shoes/womens/anashria-womens-premier-leather-sandal.html"}}"><img src="{{skin url='images/ph_callout_left_top.gif'}}" alt="" border="0" class='img-responsive' /></a></p>
3
- <p class="home-callout"><img src="{{skin url='images/ph_callout_left_rebel.jpg'}}" alt="" border="0" class='img-responsive' /></p>
4
- {{block type="tag/popular" template="tag/popular.phtml"}}
5
- </div>
6
- <div class="home-spot col-sm-9">
7
- <p class="home-callout"><img src="{{skin url='images/home_main_callout.jpg'}}" alt="" class='img-responsive' border="0" /></p>
8
- <p class="home-callout"><img src="{{skin url='images/free_shipping_callout.jpg'}}" alt="" class='img-responsive' border="0" /></p>
9
- <h3>Best Selling Products</h3>
10
-
11
- <div class="row" style="padding:10px 0"><!-- row 1 example data -->
12
- <div class="col-xs-6">
13
- <div class="row">
14
- <div class="col-sm-6 col-xs-12">
15
- <a href="{{store direct_url="sony-vaio-vgn-txn27n-b-11-1-notebook-pc.html"}}"><img class="product-img" src="{{skin url='images/media/best_selling_img01.jpg'}}" alt="" width="95" border="0" /></a>
16
- </div>
17
- <div class="product-description col-sm-6 col-xs-12">
18
- <p><a href="{{store direct_url="sony-vaio-vgn-txn27n-b-11-1-notebook-pc.html"}}">Sony VAIO VGN-TXN27N/B 11.1" Notebook PC</a></p>
19
- <p>See all <a href="{{store direct_url="electronics/computers/laptops.html"}}">Laptops</a></p>
20
- </div>
21
- </div>
22
- </div>
23
- <div class="col-xs-6">
24
- <div class="row">
25
- <div class="col-sm-6 col-xs-12">
26
- <a href="{{store direct_url="nine-west-women-s-lucero-pump.html"}}"><img class="product-img" src="{{skin url='images/media/best_selling_img02.jpg'}}" alt="" width="95" border="0" /></a>
27
- </div>
28
- <div class="product-description col-sm-6 col-xs-12">
29
- <p><a href="{{store direct_url="nine-west-women-s-lucero-pump.html"}}">Nine West Women's Lucero Pump</a></p>
30
- <p>See all <a href="{{store direct_url="apparel/shoes.html"}}">Shoes</a></p>
31
- </div>
32
- </div>
33
- </div>
34
- </div>
35
-
36
-
37
- <div class="row" style="background: #eee; padding: 10px 0"><!-- row 2 example data -->
38
- <div class="col-xs-6">
39
- <div class="row">
40
- <div class="col-sm-6 col-xs-12">
41
- <a href="{{store direct_url="olympus-stylus-750-7-1mp-digital-camera.html"}}"><img class="product-img" src="{{skin url='images/media/best_selling_img03.jpg'}}" alt="" width="95" border="0" /></a>
42
- </div>
43
- <div class="product-description col-sm-6 col-xs-12">
44
- <p><a href="{{store direct_url="olympus-stylus-750-7-1mp-digital-camera.html"}}">Olympus Stylus 750 7.1MP Digital Camera</a></p>
45
- <p>See all <a href="{{store direct_url="electronics/cameras/digital-cameras.html"}}">Digital Cameras</a></p>
46
- </div>
47
- </div>
48
- </div>
49
- <div class="col-xs-6">
50
- <div class="row">
51
- <div class="col-sm-6 col-xs-12">
52
- <a href="{{store direct_url="acer-ferrari-3200-notebook-computer-pc.html"}}"><img class="product-img" src="{{skin url='images/media/best_selling_img04.jpg'}}" alt="" width="95" border="0" /></a>
53
- </div>
54
- <div class="product-description col-sm-6 col-xs-12">
55
- <p><a href="{{store direct_url="acer-ferrari-3200-notebook-computer-pc.html"}}">Acer Ferrari 3200 Notebook Computer PC</a></p>
56
- <p>See all <a href="{{store direct_url="electronics/computers/laptops.html"}}">Laptops</a></p>
57
- </div>
58
- </div>
59
- </div>
60
- </div>
61
-
62
- <div class="row" style="padding:10px 0">
63
- <div class="col-xs-6">
64
- <div class="row">
65
- <div class="col-sm-6 col-xs-12">
66
- <a href="{{store direct_url="asics-men-s-gel-kayano-xii.html"}}"><img class="product-img" src="{{skin url='images/media/best_selling_img05.jpg'}}" alt="" width="95" border="0" /></a>
67
- </div>
68
- <div class="product-description col-sm-6 col-xs-12">
69
- <p><a href="{{store direct_url="asics-men-s-gel-kayano-xii.html"}}">ASICS&reg; Men's GEL-Kayano&reg; XII</a></p>
70
- <p>See all <a href="{{store direct_url="apparel/shoes.html"}}">Shoes</a></p>
71
- </div>
72
- </div>
73
- </div>
74
- <div class="col-xs-6">
75
- <div class="row">
76
- <div class="col-sm-6 col-xs-12">
77
- <a href="{{store direct_url="coalesce-functioning-on-impatience-t-shirt.html"}}"><img class="product-img" src="{{skin url='images/media/best_selling_img06.jpg'}}" alt="" width="95" border="0" /></a>
78
- </div>
79
- <div class="product-description col-sm-6 col-xs-12">
80
- <p><a href="{{store direct_url="coalesce-functioning-on-impatience-t-shirt.html"}}">Coalesce: Functioning On Impatience T-Shirt</a></p>
81
- <p>See all <a href="{{store direct_url="apparel/shirts.html"}}">Shirts</a></p>
82
- </div>
83
- </div>
84
- </div>
85
- </div>
86
- </div> <!-- end example data div -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/responsive/css/responsive.css CHANGED
@@ -49,13 +49,13 @@
49
  .registered-customer .required{text-align: left; margin-top: 10px}
50
 
51
  /* My Dashboard */
52
- .col-order-date, .col-ship-to, .col-order-total{display: none !important}
53
  /*.title-buttons{text-align: left}*/
54
  /* checkout /cart */
55
  .cart .totals{margin-top: 20px}
56
  #shopping-cart-table .item-editable{display: none}
57
  #shopping-cart-table .item-image{display: none}
58
-
59
  /* catalog category */
60
  .pager-responsive .amount{display: none}
61
  .pager-responsive .limiter label{display: none}
@@ -77,6 +77,9 @@
77
  /* bootstrap 3 fix the scroll bar of Navbar on Mobile device */
78
  .navbar-collapse {max-height: none;}
79
  .dropdown-menu{padding-left: 8px;}
 
 
 
80
  }
81
 
82
  /* Landscape phones and down */
@@ -84,8 +87,19 @@
84
 
85
  /* catalog category */
86
  .block-subscribe, .block-compare, .block-poll, .block-viewed, .block-tags, .paypal-logo{display: none}
87
-
88
  .col-main .category-image{display: none}
89
 
 
 
 
 
 
 
 
 
 
 
 
 
90
 
91
  }
49
  .registered-customer .required{text-align: left; margin-top: 10px}
50
 
51
  /* My Dashboard */
52
+ .col-order-date, .col-ship-to, .col-order-total, .col-order-status{display: none !important}
53
  /*.title-buttons{text-align: left}*/
54
  /* checkout /cart */
55
  .cart .totals{margin-top: 20px}
56
  #shopping-cart-table .item-editable{display: none}
57
  #shopping-cart-table .item-image{display: none}
58
+ .data-table .col-wishlist{display: none}
59
  /* catalog category */
60
  .pager-responsive .amount{display: none}
61
  .pager-responsive .limiter label{display: none}
77
  /* bootstrap 3 fix the scroll bar of Navbar on Mobile device */
78
  .navbar-collapse {max-height: none;}
79
  .dropdown-menu{padding-left: 8px;}
80
+
81
+ /* footer */
82
+ .footer .footer-right{text-align: left}
83
  }
84
 
85
  /* Landscape phones and down */
87
 
88
  /* catalog category */
89
  .block-subscribe, .block-compare, .block-poll, .block-viewed, .block-tags, .paypal-logo{display: none}
 
90
  .col-main .category-image{display: none}
91
 
92
+ /* catalog product view */
93
+ .products-list .product-shop{margin-left: 0}
94
+ .sorter .sort-by label{display: none}
95
+
96
+ /* product options */
97
+ .product-options{padding: 0}
98
+
99
+ /* onepage checkout */
100
+ .data-table td {padding:3px 8px;}
101
+ .data-table thead th{padding:3px 2px;}
102
+ .cart .title-buttons .checkout-types{float:left; margin-top: 10px;}
103
+ .order-review .buttons-set button.button{float: left; margin-left: 0}
104
 
105
  }
skin/frontend/default/responsive/css/styles.php CHANGED
@@ -40,11 +40,23 @@
40
  /* footer */
41
  $footer_link_color = '#' . Mage::getStoreConfig('setting/footer/link_color');
42
  $footer_link_size = Mage::getStoreConfig('setting/footer/link_size');
43
-
44
  // get default size
45
  if ($footer_link_size == ''){
46
  $footer_link_size = $fontsize;
47
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  ?>
49
 
50
  * { margin:0; padding:0; }
@@ -124,7 +136,7 @@ ul,ol { list-style:none; }
124
 
125
  /* Base Columns */
126
  .col-left { /*float:left; width:195px; padding:0 0 1px; */}
127
- .col-left.sidebar{padding-left: 5px}
128
  .col-main { /*float:left; width:685px; padding:0 0 1px; */}
129
  .col-right { /*float:right; width:195px; padding:0 0 1px; */}
130
 
@@ -177,7 +189,7 @@ button.button::-moz-focus-inner { /*padding:0; border:0; */} /* FF Fix */
177
  button.button span span { border:0; padding:0; }
178
  button.disabled span { border-color:#bbb !important; background:#bbb !important; }*/
179
 
180
- button.btn-checkout span { height:40px; border:0; background:url(../images/btn_checkout.gif) 0 0 no-repeat; padding:0 0 0 9px; font:bold 15px/40px Arial, Helvetica, sans-serif; color:#fff; }
181
  button.btn-checkout span span { background-position:100% 0; padding:0 25px 0 16px; }
182
  button.btn-checkout.no-checkout span { background-position:0 100%; color:#b8baba; }
183
  button.btn-checkout.no-checkout span span { background-position:100% 100%; }
@@ -323,7 +335,7 @@ input.input-text:focus,select:focus,textarea:focus { background-color:#edf7fd; }
323
  .fieldset .legend { float:left; font-weight:bold; font-size:13px; border:1px solid #f19900; background:#f9f3e3; color:#e76200; margin:-33px 0 0 -10px; padding:0 8px; position:relative; }
324
 
325
  /* Form Validation */
326
- .validation-advice { clear:both; min-height:13px; margin:3px 0 0; padding-left:17px; font-size:11px; font-weight:bold; line-height:13px; background:url(../images/validation_advice_bg.gif) 2px 0 no-repeat; color:#eb340a; }
327
  .validation-failed { border:1px dashed #eb340a !important; background:#faebe7 !important; }
328
  .validation-passed {}
329
  p.required { font-size:11px; text-align:right; color:#EB340A; }
@@ -346,9 +358,9 @@ p.required { font-size:11px; text-align:right; color:#EB340A; }
346
  .note-msg,
347
  .notice-msg { border-style:solid !important; border-width:1px !important; background-position:10px 9px !important; background-repeat:no-repeat !important; min-height:24px !important; padding:8px 8px 8px 32px !important; font-size:11px !important; font-weight:bold !important; }
348
  .error-msg { border-color:#f16048; background-color:#faebe7; background-image:url(../images/i_msg-error.gif); color:#df280a; }
349
- .success-msg { border-color:#446423; background-color:#eff5ea; background-image:url(../images/i_msg-success.gif); color:#3d6611; }
350
  .note-msg,
351
- .notice-msg { border-color:#fcd344; background-color:#fafaec; background-image:url(../images/i_msg-note.gif); color:#3d6611; }
352
 
353
  /* BreadCrumbs */
354
  .breadcrumbs { font-size:11px; line-height:1.25; margin:0 0 13px; }
@@ -405,17 +417,17 @@ p.required { font-size:11px; text-align:right; color:#EB340A; }
405
  /*.data-table tr.odd:hover,
406
  .data-table tr.even:hover { background:#ebf1f6; }*/
407
  .data-table td.last,
408
- .data-table th.last { border-right:0; }
409
  .data-table tr.last th,
410
  .data-table tr.last td { border-bottom:0 !important; }
411
  .data-table th { padding:3px 8px; font-weight:normal; }
412
  .data-table td { padding:3px 8px; }
413
 
414
- .data-table thead th { font-weight:bold; border-right:1px solid #c2d3e0; padding:2px 8px; color:#0a263c; white-space:nowrap; vertical-align:middle; }
415
  .data-table thead th.wrap { white-space:normal; }
416
  .data-table thead th a,
417
  .data-table thead th a:hover { color:#fff; }
418
- .data-table thead th { background:url(../images/bkg_th.gif) repeat-x 0 100% #d9e5ee; }
419
  .data-table thead th .tax-flag { font-size:11px; white-space:nowrap; }
420
 
421
  .data-table tfoot { border-bottom:1px solid #d9dde3; }
@@ -438,7 +450,7 @@ p.required { font-size:11px; text-align:right; color:#EB340A; }
438
  .data-table tbody td .option-value { padding-left:10px; }
439
 
440
  /* Generic Info Box */
441
- .info-box { background:#fff url(../images/bkg_block-title.gif) 0 0 repeat-x; border:1px solid #d0cbc1; padding:12px 15px; margin:0 0 15px; }
442
  .info-box h2 { font-weight:bold; font-size:13px; }
443
 
444
  .info-table th { font-weight:bold; padding:2px 15px 2px 0; }
@@ -447,7 +459,7 @@ p.required { font-size:11px; text-align:right; color:#EB340A; }
447
  /* Shopping cart total summary row expandable to details */
448
  tr.summary-total { cursor:pointer; }
449
  tr.summary-total td {}
450
- tr.summary-total .summary-collapse { float:right; text-align:right; padding-left:20px; background:url(../images/bkg_collapse.gif) 0 5px no-repeat; cursor:pointer; }
451
  tr.show-details .summary-collapse { background-position:0 -52px; }
452
  tr.show-details td {}
453
  tr.summary-details td { font-size:11px; background-color:#dae1e4; color:#626465; }
@@ -458,7 +470,7 @@ tr.summary-details-excluded { font-style:italic; }
458
  .cart-tax-info { display:block; }
459
  .cart-tax-info,
460
  .cart-tax-info .cart-price { padding-right:20px; }
461
- .cart-tax-total { display:block; padding-right:20px; background:url(../images/bkg_collapse.gif) 100% 5px no-repeat; cursor:pointer; }
462
  .cart-tax-info .price,
463
  .cart-tax-total .price { display:inline !important; font-weight:normal !important; }
464
  .cart-tax-total-expanded { background-position:100% -52px; }
@@ -501,22 +513,22 @@ tr.summary-details-excluded { font-style:italic; }
501
  .link-reorder { font-weight:bold; color:#dc6809 !important; }
502
  .link-compare { font-weight:bold; }
503
  .link-print { /*background:url(../images/i_print.gif) 0 2px no-repeat; padding:2px 0 2px 25px;*/ font-weight:bold; color:#dc6809; }
504
- .link-rss { background:url(../images/i_rss.gif) 0 2px no-repeat; padding-left:18px; line-height:14px; white-space:nowrap; }
505
  .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; */}
506
- .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; }
507
  .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; */}
508
- .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; }
509
 
510
  .cards-list dt { margin:5px 0 0; }
511
  .cards-list .offset { padding:2px 0 2px 20px; }
512
 
513
  .separator { margin:0 3px; }
514
 
515
- .divider { clear:both; display:block; font-size:0; line-height:0; height:1px; margin:10px 0; background:url(../images/bkg_divider1.gif) 0 50% repeat-x; text-indent:-999em; overflow:hidden; }
516
 
517
  /* Global site notices */
518
  .global-site-notice { border:1px solid #cfcfcf; border-width:0 0 1px; background:#ffff90; font-size:12px; line-height:1.25; text-align:center; color:#2f2f2f; }
519
- .global-site-notice .notice-inner { width:860px; margin:0 auto; padding:12px 0 12px 80px; background:url(../images/i_notice.gif) 20px 25px no-repeat; text-align:left; }
520
  .global-site-notice .notice-inner p { margin:0; border:1px dotted #cccc73; padding:10px; }
521
  .global-site-notice .notice-inner .actions { padding-top:10px; }
522
 
@@ -549,7 +561,7 @@ tr.summary-details-excluded { font-style:italic; }
549
  .header .form-search label { float:left; width:24px; height:21px; text-align:left; text-indent:-999em; overflow:hidden; }
550
  .header .form-search input.input-text {/* float:left; padding: 10px; width: 98%; margin-top: 15px; border-color:#5c7989; width:209px; margin-right:4px; */}
551
  .header .form-search button.button { float:left; }
552
- .header .form-search button.button span { border:0; height:21px; background:url(../images/btn_search.gif) 0 0 no-repeat; padding:0 0 0 3px; font:bold 11px/21px Tahoma, Verdana, Arial, sans-serif; }
553
  .header .form-search button.button span span { background-position:100% 0; padding:0 6px 0 3px; }
554
  .header .form-search .search-autocomplete { z-index:999; left:40px !important; top:22px !important; }
555
  .header .form-search .search-autocomplete ul { border:1px solid #5c7989; background-color:#f9f5f0; }
@@ -557,6 +569,8 @@ tr.summary-details-excluded { font-style:italic; }
557
  .header .form-search .search-autocomplete li .amount { float:right; font-weight:bold; }
558
  .header .form-search .search-autocomplete li.odd { background-color:#fffefb; }
559
  .header .form-search .search-autocomplete li.selected { background-color:#f7e8dd; }
 
 
560
  .header .form-language { clear:both; padding:5px 0 0;/* text-align:right; */}
561
  .header .form-language label { font-weight:bold; padding-right:5px;/* color:#a7c6dd; vertical-align:middle; */}
562
  .header .form-language select { padding:0; }
@@ -582,7 +596,7 @@ tr.summary-details-excluded { font-style:italic; }
582
  #nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
583
  #nav span { display:block; cursor:pointer; white-space:nowrap; }
584
  #nav li ul span {white-space:normal; }
585
- #nav ul li.parent a { background:url(../images/bkg_nav2.gif) 100% 100% no-repeat; }
586
  #nav ul li.parent li a { background-image:none; }
587
  */
588
  /* 0 Level */
@@ -628,7 +642,7 @@ tr.summary-details-excluded { font-style:italic; }
628
 
629
  /* Sidebar =============================================================================== */
630
  .block { border:1px solid #c4c1bc; margin:0 0 15px; }
631
- .block .block-title { background:url(../images/bkg_block-title.gif) 0 0 repeat-x; border-bottom:1px solid #ddd; padding:2px 9px; }
632
  .block .block-title strong { display:block; font:bold 12px/16px Arial, Helvetica, sans-serif; min-height:16px; padding:1px 0 1px; text-transform:uppercase; color:#e26703; }
633
  .block .block-title strong span {}
634
  .block .block-title a { text-decoration:none !important; }
@@ -638,7 +652,7 @@ tr.summary-details-excluded { font-style:italic; }
638
  .block .block-content .product-name { color:#1e7ec8; }
639
  .block .btn-remove,
640
  .block .btn-edit { float:right; margin:1px 0 2px 5px; }
641
- .block .actions { background:#dee5e8 url(../images/bkg_block-actions.gif) 0 0 repeat-x; padding:6px 9px; text-align:right; }
642
  .block .actions a { float:left; }
643
  .block .actions button.button { float:right; }
644
  .block .empty { margin:0; padding:5px 9px; }
@@ -658,7 +672,7 @@ tr.summary-details-excluded { font-style:italic; }
658
  .block-compared,
659
  .block-related,
660
  .block-tags,
661
- .block-login { font-size:11px; line-height:1.25; }
662
  .block-cart .block-title strong,
663
  .block-wishlist .block-title strong,
664
  .block-subscribe .block-title strong,
@@ -679,8 +693,8 @@ tr.summary-details-excluded { font-style:italic; }
679
  .block-cart .mini-products-list .product-details .nobr { white-space:normal !important; }
680
 
681
  /* Block: Account */
682
- .block-account { border-color:#bbb; }
683
- .block-account .block-title { background:#fc9d36 url(../images/bkg_block-title-account.gif) 0 100% repeat-x; border:0; padding:3px 10px; }
684
  .block-account .block-title strong { font-size:13px; color:#fff; }
685
  .block-account .block-content { background:#fbfaf6; padding:7px 10px 7px; }
686
  .block-account .block-content li a { display:block; border-bottom:1px solid #ddd; padding:3px 0; color:#5f5d5c; text-decoration:none !important; }
@@ -690,22 +704,22 @@ tr.summary-details-excluded { font-style:italic; }
690
  .block-account .block-content li.current.last { border-bottom:0; }
691
 
692
  /* Block: Currency Switcher */
693
- .block-currency { border:0; background:url(../images/bkg_block-currency.gif) 0 0 no-repeat; padding:7px 12px 10px; height:51px; }
694
  .block-currency .block-title { background:none; border:0; padding:0; margin:0 0 5px; }
695
- .block-currency .block-title strong { font:bold 13px/21px Arial, Helvetica, sans-serif; background:url(../images/i_block-currency.gif) 0 50% no-repeat; padding:0 0 0 21px; text-transform:none; color:#fff; }
696
  .block-currency .block-content { background:none; padding:0; }
697
  .block-currency .block-content select { width:100%; padding:0; }
698
 
699
  /* Block: Layered Navigation */
700
- .block-layered-nav { border:0; }
701
- .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; }
702
- .block-layered-nav .block-subtitle { line-height:1.35; background:#d5e8ff url(../images/bkg_block-layered1.gif) 0 50% repeat; padding:3px 9px; border:1px solid #b9ccdd; border-width:1px 0; text-transform:uppercase; color:#1f5070; }
703
  .block-layered-nav .block-content { border:1px solid #a0b3c3; background:#e7f1f4; }
704
- .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; }
705
- .block-layered-nav dd { padding:0 12px 12px; background:url(../images/bkg_block-layered-dd.gif) 0 100% repeat-x; }
706
  .block-layered-nav dd.last { background:none; }
707
  .block-layered-nav .currently li { background:#fff/* url(../images/bkg_block-layered-li.gif) 0 100% repeat-x */; padding:4px 5px 2px 5px; position:relative; z-index:1; line-height:1.5; }
708
- .block-layered-nav .currently .label { font-weight:bold; padding-left:15px; background:url(../images/bkg_block-layered-label.gif) 0 4px no-repeat; text-transform:uppercase; display:inline-block; vertical-align:top; }
709
  .block-layered-nav .currently .value { display:inline-block; vertical-align:top; color: #e26703 }
710
  .block-layered-nav .currently .btn-previous,
711
  .block-layered-nav .currently .btn-remove {/* position:absolute; right:4px; top:9px; margin:0; */}
@@ -737,9 +751,9 @@ tr.summary-details-excluded { font-style:italic; }
737
 
738
  /* Block: Compare Products */
739
  .block-compare{clear: both}
740
- .block-compare .block-title strong { background-image:url(../images/i_block-list.gif); background-position:0 1px; }
741
  .block-compare button.button span { border-color:#406a83; background:#618499; }
742
- .page-popup .link-print { background:url(../images/i_print.gif) 0 2px no-repeat; padding:2px 0 2px 25px; font-weight:bold; color:#1e7ec8; }
743
  .compare-table { border:0; }
744
  .compare-table thead tr.first th,
745
  .compare-table thead tr.first td { border:0; background:none; padding:0; font-size:0; line-height:0; }
@@ -763,12 +777,12 @@ tr.summary-details-excluded { font-style:italic; }
763
  .block-viewed{clear: both}
764
 
765
  /* Block: Recently Compared */
766
- .block-compared .block-title strong { background-image:url(../images/i_block-list.gif); background-position:0 1px; }
767
 
768
  /* Block: Poll */
769
  .block-poll .block-title strong {/* background-image:url(../images/i_block-poll.gif); */}
770
  .block-poll .block-subtitle { font-size:14px; }
771
- .block-poll label { color:#777; font-weight:bold; }
772
  .block-poll input.radio { float:left; margin:1px -18px 0 0; }
773
  .block-poll .label { display:block; margin-left:18px; text-align: left}
774
  .block-poll li { padding:3px 9px; }
@@ -782,7 +796,7 @@ tr.summary-details-excluded { font-style:italic; }
782
  .block-gr-search button.button span { border-color:#406a83; background:#618499; }
783
 
784
  /* Block: Tags */
785
- .block-tags .block-title strong { background-image:url(../images/i_block-tags.gif); }
786
  .block-tags .block-content .tags-list { background:none; border:0; font-size:12px; }
787
  .block-tags .block-content a { color:#1b2d3b; }
788
  .block-tags .actions { text-align:right; }
@@ -799,7 +813,7 @@ tr.summary-details-excluded { font-style:italic; }
799
  .block-subscribe button.button{margin:10px 0 5px 0}
800
 
801
  /* Block: Reorder */
802
- .block-reorder .block-title strong { background-image:url(../images/i_block-list.gif); }
803
  .block-reorder input.checkbox { float:left; margin:2px -20px 0 0; }
804
  .block-reorder .product-name { margin-left:20px; }
805
  .block-reorder .validation-advice { margin:3px 9px 7px; }
@@ -809,7 +823,7 @@ tr.summary-details-excluded { font-style:italic; }
809
  .block-banner .block-content { padding:0; text-align:center; }
810
 
811
  /* Block: Login */
812
- .block-login .block-title strong { background-image:url(../images/i_ma-info.gif); }
813
  .block-login .block-content { padding:5px 10px; }
814
  .block-login label { font-weight:bold; color:#666; }
815
  .block-login input.input-text { display:block; width:167px; margin:3px 0; }
@@ -830,11 +844,11 @@ tr.summary-details-excluded { font-style:italic; }
830
  .category-products {}
831
 
832
  /* View Type: Grid */
833
- .products-grid { border-bottom:1px solid #d9ddd3; background:url(../images/bkg_grid.gif) 0 0 repeat; position:relative; }
834
  .products-grid.last { border-bottom:0; }
835
  .products-grid li.item {/* float:left; width:138px; */padding:12px 10px 80px; }
836
  .products-grid .product-image { /*display:block; width:135px; height:135px; margin:0 0 10px; */}
837
- .products-grid .product-name { /*min-height:2.7em;*/ margin:0 0 5px; font-weight:bold; font-size:13px; color:#203548; }
838
  .products-grid .product-name a { color:#203548; }
839
  .products-grid .price-box { margin:5px 0; }
840
  .products-grid .availability { line-height:21px; }
@@ -989,7 +1003,7 @@ tr.summary-details-excluded { font-style:italic; }
989
  /* Tier Prices */
990
  .product-pricing,
991
  .tier-prices { margin:10px 0; padding:10px; background-color:#f4f7f7; border:1px solid #dadddd; color:#424242; }
992
- .tier-prices li { line-height:1.4; background:url(../images/i_tier.gif) no-repeat 0 3px; padding:2px 0 2px 10px; }
993
  .tier-prices .benefit { font-style:italic; font-weight:bold; color:#2f2f2f; }
994
  .tier-prices .price { font-weight:bold; color:#2f2f2f; }
995
 
@@ -1033,7 +1047,7 @@ tr.summary-details-excluded { font-style:italic; }
1033
  .product-view .product-img-box .product-image-zoom { position:relative; width:265px; height:265px; overflow:hidden; z-index:9; }
1034
  .product-view .product-img-box .product-image-zoom img { position:absolute; left:0; top:0; cursor:move; }
1035
  .product-view .product-img-box .zoom-notice { font-size:11px; margin:0 0 5px; text-align:center; }
1036
- .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; }
1037
  .product-view .product-img-box .zoom.disabled { -moz-opacity:.3; -webkit-opacity:.3; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";/*IE8*/ opacity:.3; }
1038
  .product-view .product-img-box .zoom #track { position:relative; height:18px; background:#f47b8c}
1039
  .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}
@@ -1057,7 +1071,7 @@ tr.summary-details-excluded { font-style:italic; }
1057
  .product-view .product-shop .product-name { margin:0 0 5px; }
1058
  .product-view .product-shop .product-name h1 { margin:0; font:bold 15px/1.35 Arial, Helvetica, sans-serif; }
1059
  .product-view .product-shop .availability { margin:10px 0; }
1060
- .product-view .product-shop .short-description { margin:10px 0; background:url(../images/bkg_divider1.gif) 0 0 repeat-x; padding:10px 0 0; }
1061
  .product-view .product-shop .price-box { margin:10px 0; }
1062
  .product-view .product-shop .add-to-links { margin:0; }
1063
  .product-view .product-shop .add-to-links { font-size:12px; text-align:right; }
@@ -1066,7 +1080,7 @@ tr.summary-details-excluded { font-style:italic; }
1066
  .product-view .product-shop .add-to-links a { color:#1E7EC8 !important; font-weight:normal !important; }
1067
 
1068
  /* Product Options */
1069
- .product-options { margin:20px 0 0; padding:10px 15px 20px; position:relative; background-color:#f6f6f6; border:1px solid #e4e4e4; }
1070
  .product-options dt { padding:10px 0 0; font-weight:normal; }
1071
  .product-options dt label { font-weight:bold; color:#2f2f2f; }
1072
  .product-options dt label.required em { color:#eb340a; margin-left:5px; }
@@ -1086,7 +1100,7 @@ tr.summary-details-excluded { font-style:italic; }
1086
  .product-options ul.options-list input.radio { float:left; margin-top:3px; }
1087
  .product-options ul.options-list input.checkbox { float:left; margin-top:3px; }
1088
  .product-options ul.options-list .label {/* display:block; margin-left:18px; */}
1089
- .product-options ul.options-list label { font-weight:normal; color: <?php echo $textcolor?>}
1090
  .product-options ul.validation-failed { padding:0 7px; }
1091
  .product-options p.note { margin:0; font-size:11px; }
1092
  .product-options p.required { position:absolute; right:20px; top:20px; }
@@ -1121,7 +1135,7 @@ tr.summary-details-excluded { font-style:italic; }
1121
  .product-view .box-additional .data-table td {/* line-height:1.25; */; font-size: 12px}
1122
 
1123
  /* Block: Upsell */
1124
- .product-view .box-up-sell h2 { border-bottom:0; padding:0; margin:0 0 8px; }
1125
  /*.product-view .box-up-sell .products-grid { width:100%; border:1px solid #e5dcc3; }
1126
  .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; }
1127
  .product-view .box-up-sell .products-grid tr.last td { border-bottom:0; }
@@ -1135,11 +1149,11 @@ tr.summary-details-excluded { font-style:italic; }
1135
  .product-view .box-tags { margin:0; }
1136
  .product-view .box-tags h3 { font-size:13px; }
1137
  .product-view .box-tags .product-tags { display:block; margin:0 0 15px; }
1138
- .product-view .box-tags .product-tags li { display:inline; background:url(../images/bkg_pipe3.gif) 100% 4px no-repeat; padding:0 7px 0 4px; }
1139
  .product-view .box-tags .product-tags li.first { padding-left:0; }
1140
  .product-view .box-tags .product-tags li.last { background:none; padding-right:0; }
1141
  .product-view .box-tags .form-add label { display:block; font-size:13px; font-weight:bold; margin:0 0 5px; color:#0a263c;}
1142
- .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; }
1143
  .product-view .box-tags .form-add input.input-text { /*width:299px;*/ }
1144
  .product-view .box-tags .form-add button.button span {/* border-color:#406a83; background:#618499; */}
1145
  .product-view .box-tags .note { margin:3px 0 0;/* padding:0 0 0 23px; */font-size:11px; }
@@ -1191,7 +1205,7 @@ tr.summary-details-excluded { font-style:italic; }
1191
  .advanced-search-amount { margin:0 0 10px; }
1192
  .advanced-search-summary { margin:10px 0; border:1px solid #e9d7c9; background:#fff6f1; padding:10px; }
1193
  .advanced-search-summary ul { float:left; width:49%; }
1194
- .advanced-search-summary strong { color:#E17C24; padding-left:15px; background:url(../images/i_search_criteria.gif) 0 3px no-repeat; }
1195
  .advanced-search-summary p { clear:both; font-weight:bold; margin:0; }
1196
  .advanced-search .input-range input.input-text {display: inline}
1197
 
@@ -1210,14 +1224,14 @@ tr.summary-details-excluded { font-style:italic; }
1210
  .page-sitemap .sitemap li.level-0 a { color:#1e7ec8; }
1211
 
1212
  /* RSS */
1213
- .rss-title h1 { background:url(../images/i_rss-big.png) 0 4px no-repeat; padding-left:27px; }
1214
  .rss-table .link-rss { display:block; line-height:1.55; background-position:0 4px; }
1215
  /* ======================================================================================= */
1216
 
1217
 
1218
  /* Shopping Cart ========================================================================= */
1219
- .cart .page-title { border-bottom:0; margin:0 0 12px; }
1220
- .cart .page-title h1 { margin:10px 0 0; }
1221
 
1222
  /* Checkout Types */
1223
  .cart .page-title .checkout-types li { margin:0 0 5px; }
@@ -1244,7 +1258,7 @@ tr.summary-details-excluded { font-style:italic; }
1244
  .cart .cart-collaterals { padding:25px 0 0; }
1245
  .cart .cart-collaterals .col2-set { /*float:left; width:605px; */}
1246
  .cart .cart-collaterals .col2-set .col-2 { /*width:294px; */}
1247
-
1248
  .cart .crosssell { border:1px solid #cec3b6; background:#fafaec; padding:12px 15px; }
1249
  .cart .crosssell h2 { font-size:13px; font-weight:bold; }
1250
  .cart .crosssell .product-image { float:left; width:75px; height:75px; border:1px solid #d0cdc9; }
@@ -1255,7 +1269,7 @@ tr.summary-details-excluded { font-style:italic; }
1255
 
1256
  /* Discount Codes & Estimate Shipping and Tax Boxes */
1257
  .cart .discount,
1258
- .cart .shipping { border:1px solid #d0cbc1; background:#fff url(../images/bkg_block-title.gif) 0 0 repeat-x; padding:12px 15px; margin:0 0 18px; }
1259
  .cart .discount h2,
1260
  .cart .shipping h2 { background-position:0 0; background-repeat:no-repeat; font:bold 13px/16px Arial, Helvetica, sans-serif; /*padding:0 0 0 21px; */color:#e26703; text-transform:uppercase; }
1261
  .cart .discount button span,
@@ -1266,12 +1280,12 @@ tr.summary-details-excluded { font-style:italic; }
1266
  .cart .shipping .buttons-set button.button { float:none; margin-left:0; }
1267
  .cart .shipping .radio{display:inline-block}
1268
 
1269
- .cart .discount h2 { background-image:url(../images/i_discount.gif); }
1270
  .cart .discount .input-box { margin:8px 0 0; /*width:260px; */}
1271
  /*.cart .discount input.input-text { width:254px; }*/
1272
 
1273
- .cart .shipping h2 { background-image:url(../images/i_shipping.gif); }
1274
- .cart .shipping .sp-methods { margin:10px 0 0; padding:5px 0 0; background:url(../images/bkg_divider1.gif) 0 0 repeat-x; }
1275
 
1276
  /* Shopping Cart Totals */
1277
  .cart .totals {/* float:right; width:268px; */background:#dee5e8; border:1px solid #bebcb7; }
@@ -1332,7 +1346,7 @@ tr.summary-details-excluded { font-style:italic; }
1332
  /* Tooltip */
1333
  .tool-tip { border:1px solid #7BA7C9; background:#EAF6FF; padding:15px 20px; position:absolute; z-index:9999; }
1334
  .tool-tip .btn-close { margin:-9px -14px 0; text-align:right; }
1335
- .tool-tip .btn-close a { display:block; margin:0 0 0 auto; width:15px; height:15px; background:url(../images/btn_window_close.gif) 100% 0 no-repeat; text-align:left; text-indent:-999em; overflow:hidden; }
1336
  .tool-tip .tool-tip-content { padding:5px; }
1337
 
1338
  /* Gift Messages */
@@ -1354,10 +1368,10 @@ tr.summary-details-excluded { font-style:italic; }
1354
  .gift-messages-form .item .details .form-list li.wide .input-box { width:500px; }
1355
  .gift-messages-form .item .details .form-list li.wide textarea { width:494px; }
1356
 
1357
- .gift-message-link { font-size:11px; background:url(../images/bkg_collapse-gm.gif) 100% 6px no-repeat; padding-right:7px; }
1358
  .gift-message-link.expanded { background-position:100% -40px; }
1359
  .gift-message-row { background:#f2efe9; }
1360
- .gift-message-row .btn-close { float:right; width:16px; height:16px; background:url(../images/btn_gm-close.gif) 0 0 no-repeat; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
1361
 
1362
  /* Checkout Agreements */
1363
  .checkout-agreements li { margin:30px 0; }
@@ -1379,7 +1393,7 @@ tr.summary-details-excluded { font-style:italic; }
1379
  .opc .centinel { border:1px solid #bbb6a5; border-width:0 1px 1px; padding:10px 30px; }
1380
 
1381
  /* Generic Info Set */
1382
- .info-set { background:#fbfaf6 url(../images/bkg_checkout.gif) 0 0 repeat-x; border:1px solid #bbb6a5; margin:0 0 25px; padding:20px; }
1383
  .info-set h2 { font-size:13px; font-weight:bold; margin:0 0 10px; }
1384
  .info-set h3,
1385
  .info-set h4 { font-size:13px; font-weight:bold; color:#E26703; }
@@ -1420,7 +1434,7 @@ tr.summary-details-excluded { font-style:italic; }
1420
  .opc .buttons-set { margin-top:0; padding-top:2em; }
1421
  .opc .buttons-set p.required { margin:0; padding:0 0 10px; }
1422
  .opc .buttons-set .back-link small { display:none; }
1423
- .opc .buttons-set .back-link a { background:url(../images/i_arrow-top.gif) 0 50% no-repeat; padding-left:16px; }
1424
  .opc .buttons-set.disabled button.button { display:none; }
1425
  .opc .buttons-set .please-wait { height:21px; line-height:21px; }
1426
  .opc .ul { list-style:disc outside; padding-left:18px; }
@@ -1428,7 +1442,7 @@ tr.summary-details-excluded { font-style:italic; }
1428
  .opc { position:relative; }
1429
  .opc li.section {}
1430
 
1431
- .opc .step-title { border-width:0 1px; border-style:solid; border-color:#fff #d9dde3 #d9dde3; background:#eee url(../images/bkg_opc-title-off.gif) 0 100% repeat-x; padding:4px 8px 6px; text-align:right; }
1432
  .opc .step-title .number { float:left; background:#fff; border:1px solid #fff; padding:0 4px; margin:0 5px 0 0; font:bold 11px/14px arial, helvetica, sans-serif; color:#999; }
1433
  .opc .step-title h2 { float:left; margin:0; font:bold 13px/16px Arial, Helvetica, sans-serif; color:#999; }
1434
  .opc .step-title a { display:none; float:right; font-size:11px; line-height:16px; }
@@ -1443,8 +1457,9 @@ tr.summary-details-excluded { font-style:italic; }
1443
  .opc .active .step-title h2 { color:#f18200; }
1444
  /*.opc .active .step-title a { display:none; }*/
1445
 
1446
- .opc .step { border:1px solid #bbafa0; border-top:0; background:#fbfaf6 url(../images/bkg_checkout.gif) 0 0 repeat-x; padding:15px 30px; position:relative; }
1447
  .opc .step .tool-tip { right:30px; }
 
1448
 
1449
  #opc-login .buttons-set { border-top:0; }
1450
  #opc-login h3 { font-size:13px; border-bottom:1px solid #e4e4e4; padding-bottom:2px; text-transform:uppercase; }
@@ -1457,8 +1472,8 @@ tr.summary-details-excluded { font-style:italic; }
1457
  #opc-review .step { border:0; padding:0; }
1458
  #opc-review .product-name { font-weight:bold; color:#0a263c; }
1459
  #opc-review .item-options { margin:5px 0 0; }
1460
- #opc-review .buttons-set { padding:20px 30px; border:1px solid #d9dde3; border-width:0 1px 1px; }
1461
- #opc-review .buttons-set p { margin:0; line-height:40px; }
1462
  #opc-review .buttons-set .please-wait { height:40px; line-height:40px; }
1463
  #opc-review .authentication { margin:0 auto; width:570px; }
1464
  #opc-review .warning-message { color:#222; font-weight:bold; text-align:center; padding:10px 10px 0; }
@@ -1491,8 +1506,8 @@ tr.summary-details-excluded { font-style:italic; }
1491
  .multiple-checkout .box h2 { color:#e26703; }
1492
 
1493
  .multiple-checkout .place-order .please-wait { float:right; padding:27px 7px 0 0; }
1494
- .multiple-checkout .place-order .grand-total { float:right; height:71px; font-size:1.5em; padding:0 0 0 21px; background:url(../images/bkg_grand-total.gif) 0 0 no-repeat; overflow:hidden; }
1495
- .multiple-checkout .place-order .grand-total .inner { float:left; height:57px; padding:14px 21px 0 0; background:url(../images/bkg_grand-total.gif) 100% 0 no-repeat; }
1496
  .multiple-checkout .place-order .grand-total .inner div { display:inline; }
1497
  .multiple-checkout .place-order .grand-total big { display:inline; margin-right:12px; }
1498
  .multiple-checkout .place-order .grand-total .price { color:#E26703; }
@@ -1522,7 +1537,7 @@ tr.summary-details-excluded { font-style:italic; }
1522
 
1523
 
1524
  /* Account Login/Create Pages ============================================================ */
1525
- .account-login .content { min-height:345px; padding:14px 21px; background:#faf7ee url(../images/bkg_login-box.gif) 0 0 repeat-x; border:1px solid #bbb6a5;/* border-bottom:0; */}
1526
  .account-login .content h2 { font-weight:bold; font-size:13px; margin:0 0 14px; padding:0 0 5px 3px; border-bottom:1px solid #ddd; background-position:0 1px; background-repeat:no-repeat; text-transform:uppercase; color:#e76200; }
1527
  .account-login .new-users h2 { background-image:url(../images/i_page1.gif)}
1528
  .account-login .registered-users h2 { background-image:url(../images/i_page2.gif); }
@@ -1552,13 +1567,13 @@ tr.summary-details-excluded { font-style:italic; }
1552
  }
1553
 
1554
  /* Remember Me Popup ===================================================================== */
1555
- .window-overlay { background:url(../images/window_overlay.png) repeat; background:rgba(0, 0, 0, 0.35); position:absolute; top:0; left:0; height:100%; width:100%; z-index:990; }
1556
 
1557
  .remember-me label { float:none; margin:0 6px; }
1558
  .remember-me-popup { background:#fff; border:1px solid #ccc; left:50%; top:50%; position:absolute; margin:-85px 0 0 -200px; width:400px; text-align:left; -moz-box-shadow:0 0 6px #ccc; -webkit-box-shadow:0 0 6px #ccc; -box-shadow:0 0 6px #ccc; z-index:1000; }
1559
  .remember-me-popup h3 { background:#d9e5ee; border-bottom:1px solid #ccc; font-size:14px; padding:5px 10px; }
1560
  .remember-me-popup .remember-me-popup-head { position:relative; }
1561
- .remember-me-popup .remember-me-popup-head .remember-me-popup-close { background:url(../images/btn_window_close.gif) no-repeat; display:block; position:absolute; top:7px; right:7px; height:15px; width:15px; text-indent:-9999em; }
1562
  .remember-me-popup .remember-me-popup-body { padding:10px; }
1563
  .remember-me-popup .remember-me-popup-body a { display:inline-block; height:19px; border:1px solid #de5400; background:#f18200; padding:0 8px; font:bold 12px/19px Arial, Helvetica, sans-serif; text-align:center; text-decoration:none; white-space:nowrap; color:#fff; }
1564
  /* Remember Me Popup ===================================================================== */
@@ -1574,19 +1589,19 @@ tr.summary-details-excluded { font-style:italic; }
1574
  .dashboard .col2-set { margin:0 0 15px; }
1575
 
1576
  /* General Box */
1577
- .box-account { background:#fff url(../images/bkg_account_box.gif) 0 0 repeat-x; border:1px solid #ccc; border-color:#ccc #999 #999 #ccc; padding:15px; margin: 0 0 20px; }
1578
  .box-account .box-head { border-bottom:1px solid #d9dde3; margin:0 0 10px; text-align:right; }
1579
  .box-account .box-head h2 { float:left; margin:0; font-size:13px; font-weight:bold; text-transform:uppercase; background-position:0 0; background-repeat:no-repeat; /*padding-left:21px;*/ color:#e65505; }
1580
 
1581
- .dashboard .box .box-title { background:url(../images/bkg_divider1.gif) 0 100% repeat-x; padding:0 0 2px; margin:0 0 8px; text-align:right; }
1582
  .dashboard .box .box-title h3,
1583
  .dashboard .box .box-title h4 { float:left; font-size:13px; font-weight:bold; margin:0; }
1584
 
1585
  /* Block: Recent Orders */
1586
- .dashboard .box-recent .box-head h2 { background-image:url(../images/i_folder-table.gif); }
1587
 
1588
  /* Block: Account Information */
1589
- .dashboard .box-info .box-head h2 { background-image:url(../images/i_ma-info.gif); }
1590
  .dashboard .box-info h4 { font-size:11px; font-weight:bold; text-transform:uppercase; }
1591
 
1592
  /* Block: Reviews */
@@ -1668,7 +1683,7 @@ tr.summary-details-excluded { font-style:italic; }
1668
  .page-print h2,
1669
  .page-print h3 { font-size:13px; font-weight:bold; }
1670
  .page-print h2.h2 { font-size:16px; font-weight:bold; }
1671
- .page-print .order-date { background:url(../images/bkg_divider1.gif) 0 100% repeat-x; padding:0 0 10px; margin:0 0 10px; }
1672
  .page-print .col2-set { margin:0 0 10px; }
1673
  /* Price Rewrites */
1674
  .page-print .gift-message-link { display:none; }
@@ -1726,8 +1741,8 @@ tr.summary-details-excluded { font-style:italic; }
1726
  .map-popup { background:#fff; border:1px solid #aaa; margin:12px 0 0; position:absolute; -moz-box-shadow:0 0 6px #ccc; -webkit-box-shadow:0 0 6px #ccc; box-shadow:0 0 6px #ccc; text-align:left; width:300px; z-index:100; }
1727
  .map-popup-heading { background:#d9e5ee; border-bottom:1px solid #ccc; padding:5px 30px 5px 10px; width:260px; }
1728
  .map-popup-heading h2 { font-size:16px; margin:0; text-shadow:0 1px 0 #f6f6f6; overflow:hidden; white-space:nowrap; word-wrap:break-word; text-align:left; text-overflow:ellipsis; }
1729
- .map-popup-arrow { background:url(../images/map_popup_arrow.gif) no-repeat; position:absolute; left:50%; top:-10px; height:10px; width:19px; }
1730
- .map-popup-close { background:url(../images/btn_window_close.gif) no-repeat; display:block; position:absolute; top:8px; right:10px; height:15px; width:15px; text-indent:-9999em; -moz-box-shadow:0 0 3px #999; -webkit-box-shadow:0 0 3px #999; box-shadow:0 0 3px #999; -moz-border-radius:2px; -webkit-border-radius:2px; border-radius:2px; }
1731
  .map-popup-content { border-top:1px solid #eee; padding:10px; overflow:hidden; text-align:left; width:280px; }
1732
  .map-popup-checkout { display:inline; float:right; text-align:right; }
1733
  .map-popup-checkout span { display:block; padding-right:30px; }
@@ -1741,22 +1756,24 @@ tr.summary-details-excluded { font-style:italic; }
1741
 
1742
 
1743
  /* Footer ================================================================================ */
1744
- .footer-container { border-top:15px solid #b6d1e2; }
1745
- .footer { /*width:930px;*/ margin:0 auto; padding:10px 10px 50px; }
1746
  .footer .store-switcher { display:inline; margin:0 5px 0 0; color:#fff; }
1747
  .footer .store-switcher label { font-weight:bold; vertical-align:middle; }
1748
  .footer .store-switcher select { padding:0; vertical-align:middle; }
1749
  .footer a { color:<?php echo $footer_link_color ?>; text-decoration:none; font-size: <?php echo $footer_link_size ?>}
1750
  .footer a:hover { text-decoration:underline;}
1751
- .footer .bugs { margin:13px 0 0; color:<?php echo $footer_link_color ?>;}
1752
  .footer .bugs a { color:<?php echo $footer_link_color ?>; text-decoration:underline; font-size: <?php echo $footer_link_size ?>}
1753
- .footer .bugs a:hover { text-decoration:none; }
1754
- .footer address { margin:0 0 20px; color:<?php echo $footer_link_color ?>; }
1755
  .footer address a { color:<?php echo $footer_link_color ?>; text-decoration:underline; font-size: <?php echo $footer_link_size ?>}
1756
  .footer address a:hover { text-decoration:none; }
 
 
1757
  .footer ul { display:inline; }
1758
  .footer ul.links { display:block; }
1759
- .footer li { display:inline;/* background:url(../images/bkg_pipe2.gif) 100% 60% no-repeat;*/ padding:0 7px 0 4px; }
1760
  .footer li.last { background:none !important; padding-right:0 !important; }
1761
  .footer-container .bottom-container { margin:0 0 5px; }
1762
  /* ======================================================================================= */
40
  /* footer */
41
  $footer_link_color = '#' . Mage::getStoreConfig('setting/footer/link_color');
42
  $footer_link_size = Mage::getStoreConfig('setting/footer/link_size');
 
43
  // get default size
44
  if ($footer_link_size == ''){
45
  $footer_link_size = $fontsize;
46
  }
47
+ $footer_text_color = '#' . Mage::getStoreConfig('setting/footer/text_color');
48
+ $footer_text_size = Mage::getStoreConfig('setting/footer/text_size');
49
+ // get default size
50
+ if ($footer_text_size == ''){
51
+ $footer_text_size = $fontsize;
52
+ }
53
+ $footer_line_color = '#' . Mage::getStoreConfig('setting/footer/line_color');
54
+ $footer_line_size = Mage::getStoreConfig('setting/footer/line_size');
55
+ // get default size 10px
56
+ if ($footer_line_size == ''){
57
+ $footer_line_size = '10px';
58
+ }
59
+
60
  ?>
61
 
62
  * { margin:0; padding:0; }
136
 
137
  /* Base Columns */
138
  .col-left { /*float:left; width:195px; padding:0 0 1px; */}
139
+ .col-left.sidebar{padding-left: 0px}
140
  .col-main { /*float:left; width:685px; padding:0 0 1px; */}
141
  .col-right { /*float:right; width:195px; padding:0 0 1px; */}
142
 
189
  button.button span span { border:0; padding:0; }
190
  button.disabled span { border-color:#bbb !important; background:#bbb !important; }*/
191
 
192
+ button.btn-checkout span { height:40px; border:0;/* background:url(../images/btn_checkout.gif) 0 0 no-repeat; */ padding:0 0 0 9px; font:bold 15px/40px Arial, Helvetica, sans-serif; color:#fff; }
193
  button.btn-checkout span span { background-position:100% 0; padding:0 25px 0 16px; }
194
  button.btn-checkout.no-checkout span { background-position:0 100%; color:#b8baba; }
195
  button.btn-checkout.no-checkout span span { background-position:100% 100%; }
335
  .fieldset .legend { float:left; font-weight:bold; font-size:13px; border:1px solid #f19900; background:#f9f3e3; color:#e76200; margin:-33px 0 0 -10px; padding:0 8px; position:relative; }
336
 
337
  /* Form Validation */
338
+ .validation-advice { clear:both; min-height:13px; margin:3px 0 0; padding-left:17px; font-size:11px; font-weight:bold; line-height:13px; /* background:url(../images/validation_advice_bg.gif) 2px 0 no-repeat; */ color:#eb340a; }
339
  .validation-failed { border:1px dashed #eb340a !important; background:#faebe7 !important; }
340
  .validation-passed {}
341
  p.required { font-size:11px; text-align:right; color:#EB340A; }
358
  .note-msg,
359
  .notice-msg { border-style:solid !important; border-width:1px !important; background-position:10px 9px !important; background-repeat:no-repeat !important; min-height:24px !important; padding:8px 8px 8px 32px !important; font-size:11px !important; font-weight:bold !important; }
360
  .error-msg { border-color:#f16048; background-color:#faebe7; background-image:url(../images/i_msg-error.gif); color:#df280a; }
361
+ .success-msg { border-color:#446423; background-color:#eff5ea; /*background-image:url(../images/i_msg-success.gif); */ color:#3d6611; }
362
  .note-msg,
363
+ .notice-msg { border-color:#fcd344; background-color:#fafaec; /* background-image:url(../images/i_msg-note.gif); */ color:#3d6611; }
364
 
365
  /* BreadCrumbs */
366
  .breadcrumbs { font-size:11px; line-height:1.25; margin:0 0 13px; }
417
  /*.data-table tr.odd:hover,
418
  .data-table tr.even:hover { background:#ebf1f6; }*/
419
  .data-table td.last,
420
+ .data-table th.last {/* border-right:0; */}
421
  .data-table tr.last th,
422
  .data-table tr.last td { border-bottom:0 !important; }
423
  .data-table th { padding:3px 8px; font-weight:normal; }
424
  .data-table td { padding:3px 8px; }
425
 
426
+ .data-table thead th { font-weight:normal; border-right:1px solid #c2d3e0; padding:3px 8px; color:#f18200; white-space:nowrap; vertical-align:middle; }
427
  .data-table thead th.wrap { white-space:normal; }
428
  .data-table thead th a,
429
  .data-table thead th a:hover { color:#fff; }
430
+ .data-table thead th {/* background:url(../images/bkg_th.gif) repeat-x 0 100% #d9e5ee; */}
431
  .data-table thead th .tax-flag { font-size:11px; white-space:nowrap; }
432
 
433
  .data-table tfoot { border-bottom:1px solid #d9dde3; }
450
  .data-table tbody td .option-value { padding-left:10px; }
451
 
452
  /* Generic Info Box */
453
+ .info-box { background:#fff; border:1px solid #d0cbc1; padding:12px 15px; margin:0 0 15px; }
454
  .info-box h2 { font-weight:bold; font-size:13px; }
455
 
456
  .info-table th { font-weight:bold; padding:2px 15px 2px 0; }
459
  /* Shopping cart total summary row expandable to details */
460
  tr.summary-total { cursor:pointer; }
461
  tr.summary-total td {}
462
+ tr.summary-total .summary-collapse { float:right; text-align:right; padding-left:20px; /* background:url(../images/bkg_collapse.gif) 0 5px no-repeat; */ cursor:pointer; }
463
  tr.show-details .summary-collapse { background-position:0 -52px; }
464
  tr.show-details td {}
465
  tr.summary-details td { font-size:11px; background-color:#dae1e4; color:#626465; }
470
  .cart-tax-info { display:block; }
471
  .cart-tax-info,
472
  .cart-tax-info .cart-price { padding-right:20px; }
473
+ .cart-tax-total { display:block; padding-right:20px; /* background:url(../images/bkg_collapse.gif) 100% 5px no-repeat; */ cursor:pointer; }
474
  .cart-tax-info .price,
475
  .cart-tax-total .price { display:inline !important; font-weight:normal !important; }
476
  .cart-tax-total-expanded { background-position:100% -52px; }
513
  .link-reorder { font-weight:bold; color:#dc6809 !important; }
514
  .link-compare { font-weight:bold; }
515
  .link-print { /*background:url(../images/i_print.gif) 0 2px no-repeat; padding:2px 0 2px 25px;*/ font-weight:bold; color:#dc6809; }
516
+ .link-rss {/* background:url(../images/i_rss.gif) 0 2px no-repeat; */ padding-left:18px; line-height:14px; white-space:nowrap; }
517
  .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; */}
518
+ .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; }
519
  .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; */}
520
+ .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; }
521
 
522
  .cards-list dt { margin:5px 0 0; }
523
  .cards-list .offset { padding:2px 0 2px 20px; }
524
 
525
  .separator { margin:0 3px; }
526
 
527
+ .divider { clear:both; display:block; font-size:0; line-height:0; height:1px; margin:10px 0; /*background:url(../images/bkg_divider1.gif) 0 50% repeat-x; */ text-indent:-999em; overflow:hidden; }
528
 
529
  /* Global site notices */
530
  .global-site-notice { border:1px solid #cfcfcf; border-width:0 0 1px; background:#ffff90; font-size:12px; line-height:1.25; text-align:center; color:#2f2f2f; }
531
+ .global-site-notice .notice-inner { width:860px; margin:0 auto; padding:12px 0 12px 80px; /* background:url(../images/i_notice.gif) 20px 25px no-repeat; */ text-align:left; }
532
  .global-site-notice .notice-inner p { margin:0; border:1px dotted #cccc73; padding:10px; }
533
  .global-site-notice .notice-inner .actions { padding-top:10px; }
534
 
561
  .header .form-search label { float:left; width:24px; height:21px; text-align:left; text-indent:-999em; overflow:hidden; }
562
  .header .form-search input.input-text {/* float:left; padding: 10px; width: 98%; margin-top: 15px; border-color:#5c7989; width:209px; margin-right:4px; */}
563
  .header .form-search button.button { float:left; }
564
+ .header .form-search button.button span { border:0; height:21px; /* background:url(../images/btn_search.gif) 0 0 no-repeat; */ padding:0 0 0 3px; font:bold 11px/21px Tahoma, Verdana, Arial, sans-serif; }
565
  .header .form-search button.button span span { background-position:100% 0; padding:0 6px 0 3px; }
566
  .header .form-search .search-autocomplete { z-index:999; left:40px !important; top:22px !important; }
567
  .header .form-search .search-autocomplete ul { border:1px solid #5c7989; background-color:#f9f5f0; }
569
  .header .form-search .search-autocomplete li .amount { float:right; font-weight:bold; }
570
  .header .form-search .search-autocomplete li.odd { background-color:#fffefb; }
571
  .header .form-search .search-autocomplete li.selected { background-color:#f7e8dd; }
572
+ .header #search_mini_form .caret{margin-left:7px}
573
+ .header #search_mini_form ul li a{text-decoration:none; text-align:left}
574
  .header .form-language { clear:both; padding:5px 0 0;/* text-align:right; */}
575
  .header .form-language label { font-weight:bold; padding-right:5px;/* color:#a7c6dd; vertical-align:middle; */}
576
  .header .form-language select { padding:0; }
596
  #nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
597
  #nav span { display:block; cursor:pointer; white-space:nowrap; }
598
  #nav li ul span {white-space:normal; }
599
+ #nav ul li.parent a { /* background:url(../images/bkg_nav2.gif) 100% 100% no-repeat; */}
600
  #nav ul li.parent li a { background-image:none; }
601
  */
602
  /* 0 Level */
642
 
643
  /* Sidebar =============================================================================== */
644
  .block { border:1px solid #c4c1bc; margin:0 0 15px; }
645
+ .block .block-title { /*background:url(../images/bkg_block-title.gif) 0 0 repeat-x;*/ border-bottom:1px solid #ddd; padding:2px 9px; }
646
  .block .block-title strong { display:block; font:bold 12px/16px Arial, Helvetica, sans-serif; min-height:16px; padding:1px 0 1px; text-transform:uppercase; color:#e26703; }
647
  .block .block-title strong span {}
648
  .block .block-title a { text-decoration:none !important; }
652
  .block .block-content .product-name { color:#1e7ec8; }
653
  .block .btn-remove,
654
  .block .btn-edit { float:right; margin:1px 0 2px 5px; }
655
+ .block .actions { background:#dee5e8; padding:6px 9px; text-align:right; }
656
  .block .actions a { float:left; }
657
  .block .actions button.button { float:right; }
658
  .block .empty { margin:0; padding:5px 9px; }
672
  .block-compared,
673
  .block-related,
674
  .block-tags,
675
+ .block-login { font-size:11px; line-height:1.25; border: 1px solid #c4c6c8; margin-bottom: 20px}
676
  .block-cart .block-title strong,
677
  .block-wishlist .block-title strong,
678
  .block-subscribe .block-title strong,
693
  .block-cart .mini-products-list .product-details .nobr { white-space:normal !important; }
694
 
695
  /* Block: Account */
696
+ .block-account { border:1px solid #bbb; margin-bottom:20px}
697
+ .block-account .block-title { background:#fc9d36; border:0; padding:3px 10px; }
698
  .block-account .block-title strong { font-size:13px; color:#fff; }
699
  .block-account .block-content { background:#fbfaf6; padding:7px 10px 7px; }
700
  .block-account .block-content li a { display:block; border-bottom:1px solid #ddd; padding:3px 0; color:#5f5d5c; text-decoration:none !important; }
704
  .block-account .block-content li.current.last { border-bottom:0; }
705
 
706
  /* Block: Currency Switcher */
707
+ .block-currency { border:0; /*background:url(../images/bkg_block-currency.gif) 0 0 no-repeat;*/ padding:7px 12px 10px; height:51px; }
708
  .block-currency .block-title { background:none; border:0; padding:0; margin:0 0 5px; }
709
+ .block-currency .block-title strong { font:bold 13px/21px Arial, Helvetica, sans-serif;/* background:url(../images/i_block-currency.gif) 0 50% no-repeat;*/ padding:0 0 0 21px; text-transform:none; color:#fff; }
710
  .block-currency .block-content { background:none; padding:0; }
711
  .block-currency .block-content select { width:100%; padding:0; }
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; }
719
+ .block-layered-nav dd { padding:0 12px 12px; /*background:url(../images/bkg_block-layered-dd.gif) 0 100% repeat-x; */}
720
  .block-layered-nav dd.last { background:none; }
721
  .block-layered-nav .currently li { background:#fff/* url(../images/bkg_block-layered-li.gif) 0 100% repeat-x */; padding:4px 5px 2px 5px; position:relative; z-index:1; line-height:1.5; }
722
+ .block-layered-nav .currently .label { font-weight:bold; padding-left:15px; /* background:url(../images/bkg_block-layered-label.gif) 0 4px no-repeat;*/ text-transform:uppercase; display:inline-block; vertical-align:top; }
723
  .block-layered-nav .currently .value { display:inline-block; vertical-align:top; color: #e26703 }
724
  .block-layered-nav .currently .btn-previous,
725
  .block-layered-nav .currently .btn-remove {/* position:absolute; right:4px; top:9px; margin:0; */}
751
 
752
  /* Block: Compare Products */
753
  .block-compare{clear: both}
754
+ .block-compare .block-title strong { /*background-image:url(../images/i_block-list.gif); background-position:0 1px; */}
755
  .block-compare button.button span { border-color:#406a83; background:#618499; }
756
+ .page-popup .link-print { /*background:url(../images/i_print.gif) 0 2px no-repeat;*/ padding:2px 0 2px 25px; font-weight:bold; color:#1e7ec8; }
757
  .compare-table { border:0; }
758
  .compare-table thead tr.first th,
759
  .compare-table thead tr.first td { border:0; background:none; padding:0; font-size:0; line-height:0; }
777
  .block-viewed{clear: both}
778
 
779
  /* Block: Recently Compared */
780
+ .block-compared .block-title strong {/* background-image:url(../images/i_block-list.gif); background-position:0 1px; */}
781
 
782
  /* Block: Poll */
783
  .block-poll .block-title strong {/* background-image:url(../images/i_block-poll.gif); */}
784
  .block-poll .block-subtitle { font-size:14px; }
785
+ .block-poll label { color:#777; font-weight:normal; font-size:11px; }
786
  .block-poll input.radio { float:left; margin:1px -18px 0 0; }
787
  .block-poll .label { display:block; margin-left:18px; text-align: left}
788
  .block-poll li { padding:3px 9px; }
796
  .block-gr-search button.button span { border-color:#406a83; background:#618499; }
797
 
798
  /* Block: Tags */
799
+ .block-tags .block-title strong {/* background-image:url(../images/i_block-tags.gif); */}
800
  .block-tags .block-content .tags-list { background:none; border:0; font-size:12px; }
801
  .block-tags .block-content a { color:#1b2d3b; }
802
  .block-tags .actions { text-align:right; }
813
  .block-subscribe button.button{margin:10px 0 5px 0}
814
 
815
  /* Block: Reorder */
816
+ .block-reorder .block-title strong {/* background-image:url(../images/i_block-list.gif); */}
817
  .block-reorder input.checkbox { float:left; margin:2px -20px 0 0; }
818
  .block-reorder .product-name { margin-left:20px; }
819
  .block-reorder .validation-advice { margin:3px 9px 7px; }
823
  .block-banner .block-content { padding:0; text-align:center; }
824
 
825
  /* Block: Login */
826
+ .block-login .block-title strong {/* background-image:url(../images/i_ma-info.gif); */}
827
  .block-login .block-content { padding:5px 10px; }
828
  .block-login label { font-weight:bold; color:#666; }
829
  .block-login input.input-text { display:block; width:167px; margin:3px 0; }
844
  .category-products {}
845
 
846
  /* View Type: Grid */
847
+ .products-grid { border-bottom:1px solid #d9ddd3;/* background:url(../images/bkg_grid.gif) 0 0 repeat; */ position:relative; }
848
  .products-grid.last { border-bottom:0; }
849
  .products-grid li.item {/* float:left; width:138px; */padding:12px 10px 80px; }
850
  .products-grid .product-image { /*display:block; width:135px; height:135px; margin:0 0 10px; */}
851
+ .products-grid .product-name { /*min-height:2.7em; font-size:13px; */ margin:0 0 5px; font-weight:bold; color:#203548; }
852
  .products-grid .product-name a { color:#203548; }
853
  .products-grid .price-box { margin:5px 0; }
854
  .products-grid .availability { line-height:21px; }
1003
  /* Tier Prices */
1004
  .product-pricing,
1005
  .tier-prices { margin:10px 0; padding:10px; background-color:#f4f7f7; border:1px solid #dadddd; color:#424242; }
1006
+ .tier-prices li { line-height:1.4; /*background:url(../images/i_tier.gif) no-repeat 0 3px;*/ padding:2px 0 2px 10px; }
1007
  .tier-prices .benefit { font-style:italic; font-weight:bold; color:#2f2f2f; }
1008
  .tier-prices .price { font-weight:bold; color:#2f2f2f; }
1009
 
1047
  .product-view .product-img-box .product-image-zoom { position:relative; width:265px; height:265px; overflow:hidden; z-index:9; }
1048
  .product-view .product-img-box .product-image-zoom img { position:absolute; left:0; top:0; cursor:move; }
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}
1071
  .product-view .product-shop .product-name { margin:0 0 5px; }
1072
  .product-view .product-shop .product-name h1 { margin:0; font:bold 15px/1.35 Arial, Helvetica, sans-serif; }
1073
  .product-view .product-shop .availability { margin:10px 0; }
1074
+ .product-view .product-shop .short-description { margin:10px 0; /*background:url(../images/bkg_divider1.gif) 0 0 repeat-x;*/ padding:10px 0 0; }
1075
  .product-view .product-shop .price-box { margin:10px 0; }
1076
  .product-view .product-shop .add-to-links { margin:0; }
1077
  .product-view .product-shop .add-to-links { font-size:12px; text-align:right; }
1080
  .product-view .product-shop .add-to-links a { color:#1E7EC8 !important; font-weight:normal !important; }
1081
 
1082
  /* Product Options */
1083
+ .product-options { margin:20px 0 0; padding:10px; position:relative; background-color:#f6f6f6; border:1px solid #e4e4e4; }
1084
  .product-options dt { padding:10px 0 0; font-weight:normal; }
1085
  .product-options dt label { font-weight:bold; color:#2f2f2f; }
1086
  .product-options dt label.required em { color:#eb340a; margin-left:5px; }
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; }
1135
  .product-view .box-additional .data-table td {/* line-height:1.25; */; font-size: 12px}
1136
 
1137
  /* Block: Upsell */
1138
+ .product-view .box-up-sell h2 {/* border-bottom:0; padding:0; margin:0 0 8px; */}
1139
  /*.product-view .box-up-sell .products-grid { width:100%; border:1px solid #e5dcc3; }
1140
  .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; }
1141
  .product-view .box-up-sell .products-grid tr.last td { border-bottom:0; }
1149
  .product-view .box-tags { margin:0; }
1150
  .product-view .box-tags h3 { font-size:13px; }
1151
  .product-view .box-tags .product-tags { display:block; margin:0 0 15px; }
1152
+ .product-view .box-tags .product-tags li { display:inline;/* background:url(../images/bkg_pipe3.gif) 100% 4px no-repeat;*/ padding:0 7px 0 4px; }
1153
  .product-view .box-tags .product-tags li.first { padding-left:0; }
1154
  .product-view .box-tags .product-tags li.last { background:none; padding-right:0; }
1155
  .product-view .box-tags .form-add label { display:block; font-size:13px; font-weight:bold; margin:0 0 5px; color:#0a263c;}
1156
+ .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; */}
1157
  .product-view .box-tags .form-add input.input-text { /*width:299px;*/ }
1158
  .product-view .box-tags .form-add button.button span {/* border-color:#406a83; background:#618499; */}
1159
  .product-view .box-tags .note { margin:3px 0 0;/* padding:0 0 0 23px; */font-size:11px; }
1205
  .advanced-search-amount { margin:0 0 10px; }
1206
  .advanced-search-summary { margin:10px 0; border:1px solid #e9d7c9; background:#fff6f1; padding:10px; }
1207
  .advanced-search-summary ul { float:left; width:49%; }
1208
+ .advanced-search-summary strong { color:#E17C24; padding-left:15px;/* background:url(../images/i_search_criteria.gif) 0 3px no-repeat; */}
1209
  .advanced-search-summary p { clear:both; font-weight:bold; margin:0; }
1210
  .advanced-search .input-range input.input-text {display: inline}
1211
 
1224
  .page-sitemap .sitemap li.level-0 a { color:#1e7ec8; }
1225
 
1226
  /* RSS */
1227
+ .rss-title h1 { /*background:url(../images/i_rss-big.png) 0 4px no-repeat; */ padding-left:27px; }
1228
  .rss-table .link-rss { display:block; line-height:1.55; background-position:0 4px; }
1229
  /* ======================================================================================= */
1230
 
1231
 
1232
  /* Shopping Cart ========================================================================= */
1233
+ .cart .page-title {/* border-bottom:0; margin:0 0 12px; */}
1234
+ .cart .page-title h1 {/* margin:10px 0 0; */}
1235
 
1236
  /* Checkout Types */
1237
  .cart .page-title .checkout-types li { margin:0 0 5px; }
1258
  .cart .cart-collaterals { padding:25px 0 0; }
1259
  .cart .cart-collaterals .col2-set { /*float:left; width:605px; */}
1260
  .cart .cart-collaterals .col2-set .col-2 { /*width:294px; */}
1261
+ .btncartgroup{margin-top:15px;}
1262
  .cart .crosssell { border:1px solid #cec3b6; background:#fafaec; padding:12px 15px; }
1263
  .cart .crosssell h2 { font-size:13px; font-weight:bold; }
1264
  .cart .crosssell .product-image { float:left; width:75px; height:75px; border:1px solid #d0cdc9; }
1269
 
1270
  /* Discount Codes & Estimate Shipping and Tax Boxes */
1271
  .cart .discount,
1272
+ .cart .shipping { border:1px solid #d0cbc1; background:#fff; padding:12px 15px; margin:0 0 18px; }
1273
  .cart .discount h2,
1274
  .cart .shipping h2 { background-position:0 0; background-repeat:no-repeat; font:bold 13px/16px Arial, Helvetica, sans-serif; /*padding:0 0 0 21px; */color:#e26703; text-transform:uppercase; }
1275
  .cart .discount button span,
1280
  .cart .shipping .buttons-set button.button { float:none; margin-left:0; }
1281
  .cart .shipping .radio{display:inline-block}
1282
 
1283
+ .cart .discount h2 {/* background-image:url(../images/i_discount.gif); */}
1284
  .cart .discount .input-box { margin:8px 0 0; /*width:260px; */}
1285
  /*.cart .discount input.input-text { width:254px; }*/
1286
 
1287
+ .cart .shipping h2 {/* background-image:url(../images/i_shipping.gif); */}
1288
+ .cart .shipping .sp-methods { margin:10px 0 0; padding:5px 0 0; /*background:url(../images/bkg_divider1.gif) 0 0 repeat-x; */ }
1289
 
1290
  /* Shopping Cart Totals */
1291
  .cart .totals {/* float:right; width:268px; */background:#dee5e8; border:1px solid #bebcb7; }
1346
  /* Tooltip */
1347
  .tool-tip { border:1px solid #7BA7C9; background:#EAF6FF; padding:15px 20px; position:absolute; z-index:9999; }
1348
  .tool-tip .btn-close { margin:-9px -14px 0; text-align:right; }
1349
+ .tool-tip .btn-close a { display:block; margin:0 0 0 auto; width:15px; height:15px; /* background:url(../images/btn_window_close.gif) 100% 0 no-repeat; */ text-align:left; text-indent:-999em; overflow:hidden; }
1350
  .tool-tip .tool-tip-content { padding:5px; }
1351
 
1352
  /* Gift Messages */
1368
  .gift-messages-form .item .details .form-list li.wide .input-box { width:500px; }
1369
  .gift-messages-form .item .details .form-list li.wide textarea { width:494px; }
1370
 
1371
+ .gift-message-link { font-size:11px; /* background:url(../images/bkg_collapse-gm.gif) 100% 6px no-repeat; */ padding-right:7px; }
1372
  .gift-message-link.expanded { background-position:100% -40px; }
1373
  .gift-message-row { background:#f2efe9; }
1374
+ .gift-message-row .btn-close { float:right; width:16px; height:16px; /* background:url(../images/btn_gm-close.gif) 0 0 no-repeat; */ font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
1375
 
1376
  /* Checkout Agreements */
1377
  .checkout-agreements li { margin:30px 0; }
1393
  .opc .centinel { border:1px solid #bbb6a5; border-width:0 1px 1px; padding:10px 30px; }
1394
 
1395
  /* Generic Info Set */
1396
+ .info-set { background:#fbfaf6; border:1px solid #bbb6a5; margin:0 0 25px; padding:20px; }
1397
  .info-set h2 { font-size:13px; font-weight:bold; margin:0 0 10px; }
1398
  .info-set h3,
1399
  .info-set h4 { font-size:13px; font-weight:bold; color:#E26703; }
1434
  .opc .buttons-set { margin-top:0; padding-top:2em; }
1435
  .opc .buttons-set p.required { margin:0; padding:0 0 10px; }
1436
  .opc .buttons-set .back-link small { display:none; }
1437
+ .opc .buttons-set .back-link a {/* background:url(../images/i_arrow-top.gif) 0 50% no-repeat; */ padding-left:16px; }
1438
  .opc .buttons-set.disabled button.button { display:none; }
1439
  .opc .buttons-set .please-wait { height:21px; line-height:21px; }
1440
  .opc .ul { list-style:disc outside; padding-left:18px; }
1442
  .opc { position:relative; }
1443
  .opc li.section {}
1444
 
1445
+ .opc .step-title { border-width:0 1px; border-style:solid; border-color:#fff #d9dde3 #d9dde3; background:#eee; padding:4px 8px 6px; text-align:right; }
1446
  .opc .step-title .number { float:left; background:#fff; border:1px solid #fff; padding:0 4px; margin:0 5px 0 0; font:bold 11px/14px arial, helvetica, sans-serif; color:#999; }
1447
  .opc .step-title h2 { float:left; margin:0; font:bold 13px/16px Arial, Helvetica, sans-serif; color:#999; }
1448
  .opc .step-title a { display:none; float:right; font-size:11px; line-height:16px; }
1457
  .opc .active .step-title h2 { color:#f18200; }
1458
  /*.opc .active .step-title a { display:none; }*/
1459
 
1460
+ .opc .step { border:1px solid #bbafa0; border-top:0; background:#fbfaf6; padding:10px; position:relative; }
1461
  .opc .step .tool-tip { right:30px; }
1462
+ #billing-address-select, #shipping-address-select{width:100%}
1463
 
1464
  #opc-login .buttons-set { border-top:0; }
1465
  #opc-login h3 { font-size:13px; border-bottom:1px solid #e4e4e4; padding-bottom:2px; text-transform:uppercase; }
1472
  #opc-review .step { border:0; padding:0; }
1473
  #opc-review .product-name { font-weight:bold; color:#0a263c; }
1474
  #opc-review .item-options { margin:5px 0 0; }
1475
+ #opc-review .buttons-set { padding:10px 0px; border:1px solid #d9dde3; border-width:0 1px 1px; }
1476
+ #opc-review .buttons-set p {/* margin:0; line-height:40px; */}
1477
  #opc-review .buttons-set .please-wait { height:40px; line-height:40px; }
1478
  #opc-review .authentication { margin:0 auto; width:570px; }
1479
  #opc-review .warning-message { color:#222; font-weight:bold; text-align:center; padding:10px 10px 0; }
1506
  .multiple-checkout .box h2 { color:#e26703; }
1507
 
1508
  .multiple-checkout .place-order .please-wait { float:right; padding:27px 7px 0 0; }
1509
+ .multiple-checkout .place-order .grand-total { float:right; height:71px; font-size:1.5em; padding:0 0 0 21px;/* background:url(../images/bkg_grand-total.gif) 0 0 no-repeat; */ overflow:hidden; }
1510
+ .multiple-checkout .place-order .grand-total .inner { float:left; height:57px; padding:14px 21px 0 0;/* background:url(../images/bkg_grand-total.gif) 100% 0 no-repeat; */ }
1511
  .multiple-checkout .place-order .grand-total .inner div { display:inline; }
1512
  .multiple-checkout .place-order .grand-total big { display:inline; margin-right:12px; }
1513
  .multiple-checkout .place-order .grand-total .price { color:#E26703; }
1537
 
1538
 
1539
  /* Account Login/Create Pages ============================================================ */
1540
+ .account-login .content { min-height:345px; padding:14px 21px; background:#faf7ee; border:1px solid #bbb6a5;/* border-bottom:0; */}
1541
  .account-login .content h2 { font-weight:bold; font-size:13px; margin:0 0 14px; padding:0 0 5px 3px; border-bottom:1px solid #ddd; background-position:0 1px; background-repeat:no-repeat; text-transform:uppercase; color:#e76200; }
1542
  .account-login .new-users h2 { background-image:url(../images/i_page1.gif)}
1543
  .account-login .registered-users h2 { background-image:url(../images/i_page2.gif); }
1567
  }
1568
 
1569
  /* Remember Me Popup ===================================================================== */
1570
+ .window-overlay {/* background:url(../images/window_overlay.png) repeat */; background:rgba(0, 0, 0, 0.35); position:absolute; top:0; left:0; height:100%; width:100%; z-index:990; }
1571
 
1572
  .remember-me label { float:none; margin:0 6px; }
1573
  .remember-me-popup { background:#fff; border:1px solid #ccc; left:50%; top:50%; position:absolute; margin:-85px 0 0 -200px; width:400px; text-align:left; -moz-box-shadow:0 0 6px #ccc; -webkit-box-shadow:0 0 6px #ccc; -box-shadow:0 0 6px #ccc; z-index:1000; }
1574
  .remember-me-popup h3 { background:#d9e5ee; border-bottom:1px solid #ccc; font-size:14px; padding:5px 10px; }
1575
  .remember-me-popup .remember-me-popup-head { position:relative; }
1576
+ .remember-me-popup .remember-me-popup-head .remember-me-popup-close {/* background:url(../images/btn_window_close.gif) no-repeat; */ display:block; position:absolute; top:7px; right:7px; height:15px; width:15px; text-indent:-9999em; }
1577
  .remember-me-popup .remember-me-popup-body { padding:10px; }
1578
  .remember-me-popup .remember-me-popup-body a { display:inline-block; height:19px; border:1px solid #de5400; background:#f18200; padding:0 8px; font:bold 12px/19px Arial, Helvetica, sans-serif; text-align:center; text-decoration:none; white-space:nowrap; color:#fff; }
1579
  /* Remember Me Popup ===================================================================== */
1589
  .dashboard .col2-set { margin:0 0 15px; }
1590
 
1591
  /* General Box */
1592
+ .box-account { background:#fff; border:1px solid #ccc; border-color:#ccc #999 #999 #ccc; padding:15px; margin: 0 0 20px; }
1593
  .box-account .box-head { border-bottom:1px solid #d9dde3; margin:0 0 10px; text-align:right; }
1594
  .box-account .box-head h2 { float:left; margin:0; font-size:13px; font-weight:bold; text-transform:uppercase; background-position:0 0; background-repeat:no-repeat; /*padding-left:21px;*/ color:#e65505; }
1595
 
1596
+ .dashboard .box .box-title {/* background:url(../images/bkg_divider1.gif) 0 100% repeat-x; */ padding:0 0 2px; margin:0 0 8px; text-align:right; }
1597
  .dashboard .box .box-title h3,
1598
  .dashboard .box .box-title h4 { float:left; font-size:13px; font-weight:bold; margin:0; }
1599
 
1600
  /* Block: Recent Orders */
1601
+ .dashboard .box-recent .box-head h2 {/* background-image:url(../images/i_folder-table.gif); */}
1602
 
1603
  /* Block: Account Information */
1604
+ .dashboard .box-info .box-head h2 {/* background-image:url(../images/i_ma-info.gif); */}
1605
  .dashboard .box-info h4 { font-size:11px; font-weight:bold; text-transform:uppercase; }
1606
 
1607
  /* Block: Reviews */
1683
  .page-print h2,
1684
  .page-print h3 { font-size:13px; font-weight:bold; }
1685
  .page-print h2.h2 { font-size:16px; font-weight:bold; }
1686
+ .page-print .order-date {/* background:url(../images/bkg_divider1.gif) 0 100% repeat-x;*/ padding:0 0 10px; margin:0 0 10px; }
1687
  .page-print .col2-set { margin:0 0 10px; }
1688
  /* Price Rewrites */
1689
  .page-print .gift-message-link { display:none; }
1741
  .map-popup { background:#fff; border:1px solid #aaa; margin:12px 0 0; position:absolute; -moz-box-shadow:0 0 6px #ccc; -webkit-box-shadow:0 0 6px #ccc; box-shadow:0 0 6px #ccc; text-align:left; width:300px; z-index:100; }
1742
  .map-popup-heading { background:#d9e5ee; border-bottom:1px solid #ccc; padding:5px 30px 5px 10px; width:260px; }
1743
  .map-popup-heading h2 { font-size:16px; margin:0; text-shadow:0 1px 0 #f6f6f6; overflow:hidden; white-space:nowrap; word-wrap:break-word; text-align:left; text-overflow:ellipsis; }
1744
+ .map-popup-arrow { /* background:url(../images/map_popup_arrow.gif) no-repeat;*/ position:absolute; left:50%; top:-10px; height:10px; width:19px; }
1745
+ .map-popup-close { /* background:url(../images/btn_window_close.gif) no-repeat; */ display:block; position:absolute; top:8px; right:10px; height:15px; width:15px; text-indent:-9999em; -moz-box-shadow:0 0 3px #999; -webkit-box-shadow:0 0 3px #999; box-shadow:0 0 3px #999; -moz-border-radius:2px; -webkit-border-radius:2px; border-radius:2px; }
1746
  .map-popup-content { border-top:1px solid #eee; padding:10px; overflow:hidden; text-align:left; width:280px; }
1747
  .map-popup-checkout { display:inline; float:right; text-align:right; }
1748
  .map-popup-checkout span { display:block; padding-right:30px; }
1756
 
1757
 
1758
  /* Footer ================================================================================ */
1759
+ .footer-container { border-top:<?php echo $footer_line_size ?> solid <?php echo $footer_line_color ?>; }
1760
+ .footer { /*width:930px;*/ margin:0 auto; padding:10px 10px 50px; color:<?php echo $footer_text_color ?>; font-size: <?php echo $footer_text_size ?>}
1761
  .footer .store-switcher { display:inline; margin:0 5px 0 0; color:#fff; }
1762
  .footer .store-switcher label { font-weight:bold; vertical-align:middle; }
1763
  .footer .store-switcher select { padding:0; vertical-align:middle; }
1764
  .footer a { color:<?php echo $footer_link_color ?>; text-decoration:none; font-size: <?php echo $footer_link_size ?>}
1765
  .footer a:hover { text-decoration:underline;}
1766
+ /*.footer .bugs { margin:13px 0 0; color:<?php echo $footer_link_color ?>;}
1767
  .footer .bugs a { color:<?php echo $footer_link_color ?>; text-decoration:underline; font-size: <?php echo $footer_link_size ?>}
1768
+ .footer .bugs a:hover { text-decoration:none; } */
1769
+ .footer address { margin:0 0 20px;}
1770
  .footer address a { color:<?php echo $footer_link_color ?>; text-decoration:underline; font-size: <?php echo $footer_link_size ?>}
1771
  .footer address a:hover { text-decoration:none; }
1772
+ .footer .footer-left{text-align: left}
1773
+ .footer .footer-right{text-align: right}
1774
  .footer ul { display:inline; }
1775
  .footer ul.links { display:block; }
1776
+ .footer li { display:inline;/* background:url(../images/bkg_pipe2.gif) 100% 60% no-repeat;*/ padding:0 10px 0 0px; }
1777
  .footer li.last { background:none !important; padding-right:0 !important; }
1778
  .footer-container .bottom-container { margin:0 0 5px; }
1779
  /* ======================================================================================= */
skin/frontend/default/responsive/images/free_shipping_callout.jpg ADDED
Binary file
skin/frontend/default/responsive/images/home_main_callout.jpg ADDED
Binary file
skin/frontend/default/responsive/images/ph_callout_left_top.gif ADDED
Binary file