Version Notes
- fix scroll bar Top Menu on Mobile version
- more options to config theme at the backend
Download this release
Release Info
Developer | tony vu |
Extension | responsive |
Version | 0.0.7 |
Comparing to | |
See all releases |
Code changes from version 0.0.6 to 0.0.7
- app/code/local/Tvcom/Themecustom/etc/config.xml +6 -0
- app/code/local/Tvcom/Themecustom/etc/system.xml +154 -4
- app/design/frontend/default/responsive/template/page/html/head.phtml +5 -0
- package.xml +10 -9
- skin/frontend/default/responsive/css/responsive.css +4 -0
- skin/frontend/default/responsive/css/styles.php +40 -16
app/code/local/Tvcom/Themecustom/etc/config.xml
CHANGED
@@ -18,6 +18,12 @@
|
|
18 |
<class>Tvcom_Themecustom_Model</class>
|
19 |
</themecustom>
|
20 |
</models>
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
</global>
|
23 |
|
18 |
<class>Tvcom_Themecustom_Model</class>
|
19 |
</themecustom>
|
20 |
</models>
|
21 |
+
|
22 |
+
<blocks>
|
23 |
+
<themecustom>
|
24 |
+
<class>Tvcom_Themecustom_Block</class>
|
25 |
+
</themecustom>
|
26 |
+
</blocks>
|
27 |
|
28 |
</global>
|
29 |
|
app/code/local/Tvcom/Themecustom/etc/system.xml
CHANGED
@@ -21,7 +21,7 @@
|
|
21 |
<themebg translate="label"> <!-- theme background -->
|
22 |
<label>Theme Background</label>
|
23 |
<frontend_type>text</frontend_type>
|
24 |
-
<sort_order>
|
25 |
<show_in_default>1</show_in_default>
|
26 |
<show_in_website>1</show_in_website>
|
27 |
<show_in_store>0</show_in_store>
|
@@ -79,6 +79,79 @@
|
|
79 |
</fields>
|
80 |
</themebg>
|
81 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
<themefont translate="label"> <!-- theme font -->
|
83 |
<label>Font</label>
|
84 |
<frontend_type>text</frontend_type>
|
@@ -206,6 +279,35 @@
|
|
206 |
<comment><![CDATA[Example: https://www.youtube.com/user/username]]></comment>
|
207 |
</youtube>
|
208 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
</fields>
|
210 |
</header>
|
211 |
|
@@ -276,12 +378,60 @@
|
|
276 |
<sort_order>5</sort_order>
|
277 |
<show_in_default>1</show_in_default>
|
278 |
<show_in_website>1</show_in_website>
|
279 |
-
<show_in_store>0</show_in_store>
|
280 |
-
|
281 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
|
|
|
283 |
</footer>
|
284 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
285 |
</groups>
|
286 |
</setting>
|
287 |
</sections>
|
21 |
<themebg translate="label"> <!-- theme background -->
|
22 |
<label>Theme Background</label>
|
23 |
<frontend_type>text</frontend_type>
|
24 |
+
<sort_order>0</sort_order>
|
25 |
<show_in_default>1</show_in_default>
|
26 |
<show_in_website>1</show_in_website>
|
27 |
<show_in_store>0</show_in_store>
|
79 |
</fields>
|
80 |
</themebg>
|
81 |
|
82 |
+
<pagebg translate="label"> <!-- page background -->
|
83 |
+
<label>Page Background</label>
|
84 |
+
<frontend_type>text</frontend_type>
|
85 |
+
<sort_order>1</sort_order>
|
86 |
+
<show_in_default>1</show_in_default>
|
87 |
+
<show_in_website>1</show_in_website>
|
88 |
+
<show_in_store>0</show_in_store>
|
89 |
+
<fields>
|
90 |
+
|
91 |
+
<transparent translate="label"> <!-- page transparent background -->
|
92 |
+
<label>Is transparent background</label>
|
93 |
+
<frontend_type>select</frontend_type>
|
94 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
95 |
+
<sort_order>0</sort_order>
|
96 |
+
<show_in_default>1</show_in_default>
|
97 |
+
<show_in_website>1</show_in_website>
|
98 |
+
<show_in_store>1</show_in_store>
|
99 |
+
<comment>yes for transparent background</comment>
|
100 |
+
</transparent>
|
101 |
+
|
102 |
+
<bgcolor translate="label">
|
103 |
+
<label>Background color</label>
|
104 |
+
<frontend_type>text</frontend_type>
|
105 |
+
<validate>color</validate>
|
106 |
+
<sort_order>1</sort_order>
|
107 |
+
<show_in_default>1</show_in_default>
|
108 |
+
<show_in_website>1</show_in_website>
|
109 |
+
<show_in_store>1</show_in_store>
|
110 |
+
</bgcolor>
|
111 |
+
|
112 |
+
<bgimage translate="label"> <!-- body background image -->
|
113 |
+
<label>Background image</label>
|
114 |
+
<frontend_type>image</frontend_type>
|
115 |
+
<backend_model>adminhtml/system_config_backend_image</backend_model>
|
116 |
+
<upload_dir config="system/filesystem/media" scope_info="1">bgimage</upload_dir>
|
117 |
+
<base_url type="media" scope_info="1">bgimage</base_url>
|
118 |
+
<sort_order>2</sort_order>
|
119 |
+
<show_in_default>1</show_in_default>
|
120 |
+
<show_in_website>1</show_in_website>
|
121 |
+
<show_in_store>1</show_in_store>
|
122 |
+
</bgimage>
|
123 |
+
|
124 |
+
<bgpositionx translate="label"> <!-- background position x -->
|
125 |
+
<label>Background position x</label>
|
126 |
+
<frontend_type>text</frontend_type>
|
127 |
+
<sort_order>3</sort_order>
|
128 |
+
<show_in_default>1</show_in_default>
|
129 |
+
<show_in_website>1</show_in_website>
|
130 |
+
<show_in_store>1</show_in_store>
|
131 |
+
</bgpositionx>
|
132 |
+
|
133 |
+
<bgpositiony translate="label"> <!-- background position y -->
|
134 |
+
<label>Background position y</label>
|
135 |
+
<fronend_type>text</fronend_type>
|
136 |
+
<sort_order>4</sort_order>
|
137 |
+
<show_in_default>1</show_in_default>
|
138 |
+
<show_in_website>1</show_in_website>
|
139 |
+
<show_in_store>1</show_in_store>
|
140 |
+
</bgpositiony>
|
141 |
+
|
142 |
+
<bgrepeat translate="label"> <!-- background repeat -->
|
143 |
+
<label>Background repeat</label>
|
144 |
+
<frontend_type>select</frontend_type>
|
145 |
+
<source_model>themecustom/option_repeat</source_model>
|
146 |
+
<sort_order>5</sort_order>
|
147 |
+
<show_in_default>1</show_in_default>
|
148 |
+
<show_in_website>1</show_in_website>
|
149 |
+
<show_in_store>1</show_in_store>
|
150 |
+
</bgrepeat>
|
151 |
+
|
152 |
+
</fields>
|
153 |
+
</pagebg>
|
154 |
+
|
155 |
<themefont translate="label"> <!-- theme font -->
|
156 |
<label>Font</label>
|
157 |
<frontend_type>text</frontend_type>
|
279 |
<comment><![CDATA[Example: https://www.youtube.com/user/username]]></comment>
|
280 |
</youtube>
|
281 |
|
282 |
+
<link translate="label">
|
283 |
+
<label><![CDATA[<span style="color:red">a link</span>]]></label>
|
284 |
+
<frontend_type>label</frontend_type>
|
285 |
+
<sort_order>8</sort_order>
|
286 |
+
<show_in_default>1</show_in_default>
|
287 |
+
<show_in_website>1</show_in_website>
|
288 |
+
<show_in_store>1</show_in_store>
|
289 |
+
</link>
|
290 |
+
|
291 |
+
<link_color> <!-- header link color -->
|
292 |
+
<label>Color</label>
|
293 |
+
<frontend_type>text</frontend_type>
|
294 |
+
<validate>color</validate>
|
295 |
+
<sort_order>9</sort_order>
|
296 |
+
<show_in_default>1</show_in_default>
|
297 |
+
<show_in_website>1</show_in_website>
|
298 |
+
<show_in_store>1</show_in_store>
|
299 |
+
</link_color>
|
300 |
+
|
301 |
+
<link_size> <!-- header link color -->
|
302 |
+
<label>Font size</label>
|
303 |
+
<frontend_type>text</frontend_type>
|
304 |
+
<sort_order>10</sort_order>
|
305 |
+
<show_in_default>1</show_in_default>
|
306 |
+
<show_in_website>1</show_in_website>
|
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>
|
313 |
|
378 |
<sort_order>5</sort_order>
|
379 |
<show_in_default>1</show_in_default>
|
380 |
<show_in_website>1</show_in_website>
|
381 |
+
<show_in_store>0</show_in_store>
|
382 |
+
<fields>
|
383 |
+
<link translate="label">
|
384 |
+
<label><![CDATA[<span style="color:red">a link</span>]]></label>
|
385 |
+
<frontend_type>label</frontend_type>
|
386 |
+
<sort_order>1</sort_order>
|
387 |
+
<show_in_default>1</show_in_default>
|
388 |
+
<show_in_website>1</show_in_website>
|
389 |
+
<show_in_store>1</show_in_store>
|
390 |
+
</link>
|
391 |
+
|
392 |
+
<link_color> <!-- footer link color -->
|
393 |
+
<label>color</label>
|
394 |
+
<frontend_type>text</frontend_type>
|
395 |
+
<validate>color</validate>
|
396 |
+
<sort_order>2</sort_order>
|
397 |
+
<show_in_default>1</show_in_default>
|
398 |
+
<show_in_website>1</show_in_website>
|
399 |
+
<show_in_store>1</show_in_store>
|
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>
|
407 |
+
<show_in_website>1</show_in_website>
|
408 |
+
<show_in_store>1</show_in_store>
|
409 |
+
<comment>If empty, It will take the default font size</comment>
|
410 |
+
</link_size>
|
411 |
|
412 |
+
</fields>
|
413 |
</footer>
|
414 |
|
415 |
+
<general translate="label"> <!-- general setting -->
|
416 |
+
<label>General</label>
|
417 |
+
<frontend_type>text</frontend_type>
|
418 |
+
<sort_order>6</sort_order>
|
419 |
+
<show_in_default>1</show_in_default>
|
420 |
+
<show_in_website>1</show_in_website>
|
421 |
+
<show_in_store>1</show_in_store>
|
422 |
+
<fields>
|
423 |
+
<googleanalytics translate="label"> <!-- google analytics -->
|
424 |
+
<label>Google Analytics</label>
|
425 |
+
<frontend_type>textarea</frontend_type>
|
426 |
+
<sort_order>1</sort_order>
|
427 |
+
<show_in_default>1</show_in_default>
|
428 |
+
<show_in_website>1</show_in_website>
|
429 |
+
<show_in_store>1</show_in_store>
|
430 |
+
<comment><![CDATA[Example: Google Analytics Content Experiment code]]></comment>
|
431 |
+
</googleanalytics>
|
432 |
+
</fields>
|
433 |
+
</general>
|
434 |
+
|
435 |
</groups>
|
436 |
</setting>
|
437 |
</sections>
|
app/design/frontend/default/responsive/template/page/html/head.phtml
CHANGED
@@ -54,6 +54,11 @@
|
|
54 |
}
|
55 |
?>
|
56 |
|
|
|
|
|
|
|
|
|
|
|
57 |
|
58 |
<!--[if lt IE 7]>
|
59 |
<script type="text/javascript">
|
54 |
}
|
55 |
?>
|
56 |
|
57 |
+
<!-- Google Analytics -->
|
58 |
+
<?php
|
59 |
+
$oogleanalytics = Mage::getStoreConfig('setting/general/googleanalytics');
|
60 |
+
echo $oogleanalytics;
|
61 |
+
?>
|
62 |
|
63 |
<!--[if lt IE 7]>
|
64 |
<script type="text/javascript">
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>responsive</name>
|
4 |
-
<version>0.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
@@ -16,23 +16,24 @@ It combines
|
|
16 |

|
17 |
It support 
|
18 |

|
19 |
-
- 1280px+ Wide screens
|
20 |

|
21 |
-
- 960px+ laptop screens
|
22 |

|
23 |
- iPad or table horizontal
|
24 |

|
25 |
- iPad or table portrait
|
26 |

|
27 |
-
- 479px+ Mobile devices
|
28 |

|
29 |
-iPhone, Android, Windows phone and other smartphones</description>
|
30 |
-
<notes>- fix
|
31 |
-
-
|
|
|
32 |
<authors><author><name>tony vu</name><user>vuductrung</user><email>vuductrung2003@gmail.com</email></author></authors>
|
33 |
-
<date>2014-01-
|
34 |
-
<time>
|
35 |
-
<contents><target name="magelocal"><dir name="Tvcom"><dir name="Page"><dir name="Block"><dir name="Html"><file name="Topmenu.php" hash="352187a84b23bf49e13729b35c83a3d4"/></dir></dir><dir name="etc"><file name="config.xml" hash="b44a7f3ece8afeb85ddb3a8d4e1ea692"/></dir></dir><dir name="Themecustom"><dir name="Helper"><file name="Data.php" hash="07559e4fa8223efcb10bd0795458c765"/></dir><dir name="Model"><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="
|
36 |
<compatible/>
|
37 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
38 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>responsive</name>
|
4 |
+
<version>0.0.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>
|
16 |

|
17 |
It support 
|
18 |

|
19 |
+
- 1280px + Wide screens
|
20 |

|
21 |
+
- 960px + laptop screens
|
22 |

|
23 |
- iPad or table horizontal
|
24 |

|
25 |
- iPad or table portrait
|
26 |

|
27 |
+
- 479px + Mobile devices
|
28 |

|
29 |
-iPhone, Android, Windows phone and other smartphones</description>
|
30 |
+
<notes>- fix scroll bar Top Menu on Mobile version
|
31 |
+
- more options to config theme at the backend
|
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>
|
skin/frontend/default/responsive/css/responsive.css
CHANGED
@@ -73,6 +73,10 @@
|
|
73 |
|
74 |
/* left bar */
|
75 |
.col-left.sidebar{margin-top: 20px;}
|
|
|
|
|
|
|
|
|
76 |
}
|
77 |
|
78 |
/* Landscape phones and down */
|
73 |
|
74 |
/* left bar */
|
75 |
.col-left.sidebar{margin-top: 20px;}
|
76 |
+
|
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 */
|
skin/frontend/default/responsive/css/styles.php
CHANGED
@@ -2,25 +2,49 @@
|
|
2 |
require_once('../../../../../app/Mage.php');
|
3 |
header("Content-type: text/css; charset: UTF-8");
|
4 |
|
5 |
-
/* theme background */
|
6 |
$theme_bgcolor = '#' . Mage::getStoreConfig('setting/themebg/bgcolor');
|
7 |
$theme_bgimage = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'bgimage/' . Mage::getStoreConfig('setting/themebg/bgimage');
|
8 |
$theme_bgpositionx = Mage::getStoreConfig('setting/themebg/bgpositionx');
|
9 |
$theme_bgpositiony = Mage::getStoreConfig('setting/themebg/bgpositiony');
|
10 |
$theme_bgpositionrepeat = Mage::getStoreConfig('setting/themebg/bgrepeat');
|
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
/* theme font */
|
13 |
$fontfm = Mage::getStoreConfig('setting/themefont/fontfamily');
|
|
|
|
|
14 |
$fontsize = Mage::getStoreConfig('setting/themefont/fontsize');
|
15 |
$textcolor = '#' . Mage::getStoreConfig('setting/themefont/textcolor');
|
16 |
|
17 |
-
/*
|
|
|
|
|
|
|
|
|
18 |
$container_bgcolor = '#' . Mage::getStoreConfig('setting/body/bgcolor');
|
19 |
$container_bgimage = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'bgimage/' . Mage::getStoreConfig('setting/body/bgimage');
|
20 |
$container_bgpositionx = Mage::getStoreConfig('setting/body/bgpositionx');
|
21 |
$container_bgpositiony = Mage::getStoreConfig('setting/body/bgpositiony');
|
22 |
$container_bgpositionrepeat = Mage::getStoreConfig('setting/body/bgrepeat');
|
23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
?>
|
25 |
|
26 |
* { margin:0; padding:0; }
|
@@ -91,7 +115,7 @@ ul,ol { list-style:none; }
|
|
91 |
|
92 |
/* Layout ================================================================================ */
|
93 |
/*.wrapper { min-width:954px; }*/
|
94 |
-
.page {}
|
95 |
.page-print { background:#fff; padding:25px 30px; text-align:left; }
|
96 |
.page-empty { background:#fff; padding:20px; text-align:left; }
|
97 |
.page-popup { background:#fff; padding:25px 30px; text-align:left; }
|
@@ -334,7 +358,7 @@ p.required { font-size:11px; text-align:right; color:#EB340A; }
|
|
334 |
/* Page Heading */
|
335 |
.page-title { width:100%; overflow:hidden; border-bottom:1px solid #ccc; margin:0 0 25px; padding-bottom:5px;}
|
336 |
.page-title h1,
|
337 |
-
.page-title h2 { margin:0; font-size:20px; color:#0a263c; }
|
338 |
.page-title .separator { margin:0 3px; }
|
339 |
.page-title .link-rss { float:right; margin:7px 0 0; }
|
340 |
.title-buttons { text-align:right; }
|
@@ -519,7 +543,7 @@ tr.summary-details-excluded { font-style:italic; }
|
|
519 |
.header .logo strong { position:absolute; top:-999em; left:-999em; width:0; height:0; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
|
520 |
/*.header h1.logo { margin:0; }*/
|
521 |
.header .quick-access { /*float:right; width:600px; padding:28px 10px 0 0; */}
|
522 |
-
.header .welcome-msg { margin-bottom:0; /*text-align:right;
|
523 |
.header .welcome-msg a { color:#ebbc58; }
|
524 |
.header .form-search { /*position:absolute; top:0; right:29px; width:315px; height:30px; background:url(../images/bkg_form-search.gif) 0 0 no-repeat; padding:1px 0 0 16px; */}
|
525 |
.header .form-search label { float:left; width:24px; height:21px; text-align:left; text-indent:-999em; overflow:hidden; }
|
@@ -534,13 +558,13 @@ tr.summary-details-excluded { font-style:italic; }
|
|
534 |
.header .form-search .search-autocomplete li.odd { background-color:#fffefb; }
|
535 |
.header .form-search .search-autocomplete li.selected { background-color:#f7e8dd; }
|
536 |
.header .form-language { clear:both; padding:5px 0 0;/* text-align:right; */}
|
537 |
-
.header .form-language label { font-weight:bold; padding-right:5px
|
538 |
.header .form-language select { padding:0; }
|
539 |
.header .form-language select.flags option { background-position:4px 50%; background-repeat:no-repeat; padding-left:25px; }
|
540 |
.header .links { float:right;/* margin:0 0 6px; */}
|
541 |
.header .links li { float:left; font-size:11px;/* background:url(../images/bkg_pipe1.gif) 100% 60% no-repeat;*/ padding:10px 15px 0 0px; }
|
542 |
-
.header .links a { color
|
543 |
-
.header .links .top-link-cart i{margin-left: 5px; color:
|
544 |
.header-container .top-container { clear:both; padding:5px 10px 0 12px; text-align:right; }
|
545 |
.header-container .top-container a { font-size:11px; color:#ebbc58; }
|
546 |
|
@@ -1722,13 +1746,13 @@ tr.summary-details-excluded { font-style:italic; }
|
|
1722 |
.footer .store-switcher { display:inline; margin:0 5px 0 0; color:#fff; }
|
1723 |
.footer .store-switcher label { font-weight:bold; vertical-align:middle; }
|
1724 |
.footer .store-switcher select { padding:0; vertical-align:middle; }
|
1725 |
-
.footer a { color
|
1726 |
-
.footer a:hover { text-decoration:underline;
|
1727 |
-
.footer .bugs { margin:13px 0 0; color
|
1728 |
-
.footer .bugs a { color
|
1729 |
.footer .bugs a:hover { text-decoration:none; }
|
1730 |
-
.footer address { margin:0 0 20px; color
|
1731 |
-
.footer address a { color
|
1732 |
.footer address a:hover { text-decoration:none; }
|
1733 |
.footer ul { display:inline; }
|
1734 |
.footer ul.links { display:block; }
|
@@ -1870,8 +1894,8 @@ tr.summary-details-excluded { font-style:italic; }
|
|
1870 |
|
1871 |
/* social network block */
|
1872 |
#divnetworkshare{margin-top: 10px; text-align: left}
|
1873 |
-
#divnetworkshare a{color:
|
1874 |
-
.followus{color: #fff; vertical-align: top; padding: 10px 10px 0px 0px; display: inline-block;}
|
1875 |
|
1876 |
/* popup cart page */
|
1877 |
#popupcart{position: absolute; right: 0; z-index: 2; margin: 25px 14px 0px 0px; background:#fff; text-align: left; display: none; width: 250px}
|
2 |
require_once('../../../../../app/Mage.php');
|
3 |
header("Content-type: text/css; charset: UTF-8");
|
4 |
|
5 |
+
/* theme background */
|
6 |
$theme_bgcolor = '#' . Mage::getStoreConfig('setting/themebg/bgcolor');
|
7 |
$theme_bgimage = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'bgimage/' . Mage::getStoreConfig('setting/themebg/bgimage');
|
8 |
$theme_bgpositionx = Mage::getStoreConfig('setting/themebg/bgpositionx');
|
9 |
$theme_bgpositiony = Mage::getStoreConfig('setting/themebg/bgpositiony');
|
10 |
$theme_bgpositionrepeat = Mage::getStoreConfig('setting/themebg/bgrepeat');
|
11 |
|
12 |
+
/* page background */
|
13 |
+
$is_transparent_pagegb = Mage::getStoreConfig('setting/pagebg/transparent');
|
14 |
+
if ($is_transparent_pagegb == false){
|
15 |
+
$page_bgcolor = '#' . Mage::getStoreConfig('setting/pagebg/bgcolor');
|
16 |
+
$page_bgimage = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'bgimage/' . Mage::getStoreConfig('setting/pagebg/bgimage');
|
17 |
+
$page_bgpositionx = Mage::getStoreConfig('setting/pagebg/bgpositionx');
|
18 |
+
$page_bgpositiony = Mage::getStoreConfig('setting/pagebg/bgpositiony');
|
19 |
+
$page_bgpositionrepeat = Mage::getStoreConfig('setting/pagebg/bgrepeat');
|
20 |
+
}
|
21 |
+
|
22 |
/* theme font */
|
23 |
$fontfm = Mage::getStoreConfig('setting/themefont/fontfamily');
|
24 |
+
|
25 |
+
// if $fontsize == null then fontsize is 14px from bootstrap theme
|
26 |
$fontsize = Mage::getStoreConfig('setting/themefont/fontsize');
|
27 |
$textcolor = '#' . Mage::getStoreConfig('setting/themefont/textcolor');
|
28 |
|
29 |
+
/* header */
|
30 |
+
$header_link_color = '#' . Mage::getStoreConfig('setting/header/link_color');
|
31 |
+
$header_link_size = Mage::getStoreConfig('setting/header/link_size');
|
32 |
+
|
33 |
+
/* body */
|
34 |
$container_bgcolor = '#' . Mage::getStoreConfig('setting/body/bgcolor');
|
35 |
$container_bgimage = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'bgimage/' . Mage::getStoreConfig('setting/body/bgimage');
|
36 |
$container_bgpositionx = Mage::getStoreConfig('setting/body/bgpositionx');
|
37 |
$container_bgpositiony = Mage::getStoreConfig('setting/body/bgpositiony');
|
38 |
$container_bgpositionrepeat = Mage::getStoreConfig('setting/body/bgrepeat');
|
39 |
|
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; }
|
115 |
|
116 |
/* Layout ================================================================================ */
|
117 |
/*.wrapper { min-width:954px; }*/
|
118 |
+
.page {background:<?php echo $page_bgcolor ?> url(<?php echo $page_bgimage ?>) <?php echo $page_bgpositionx ?> <?php echo $page_bgpositiony ?> <?php echo $page_bgpositionrepeat ?>;}
|
119 |
.page-print { background:#fff; padding:25px 30px; text-align:left; }
|
120 |
.page-empty { background:#fff; padding:20px; text-align:left; }
|
121 |
.page-popup { background:#fff; padding:25px 30px; text-align:left; }
|
358 |
/* Page Heading */
|
359 |
.page-title { width:100%; overflow:hidden; border-bottom:1px solid #ccc; margin:0 0 25px; padding-bottom:5px;}
|
360 |
.page-title h1,
|
361 |
+
.page-title h2 { margin:0; /*font-size:20px; color:#0a263c; */}
|
362 |
.page-title .separator { margin:0 3px; }
|
363 |
.page-title .link-rss { float:right; margin:7px 0 0; }
|
364 |
.title-buttons { text-align:right; }
|
543 |
.header .logo strong { position:absolute; top:-999em; left:-999em; width:0; height:0; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
|
544 |
/*.header h1.logo { margin:0; }*/
|
545 |
.header .quick-access { /*float:right; width:600px; padding:28px 10px 0 0; */}
|
546 |
+
.header .welcome-msg { margin-bottom:0; /*text-align:right; color:#fff; */}
|
547 |
.header .welcome-msg a { color:#ebbc58; }
|
548 |
.header .form-search { /*position:absolute; top:0; right:29px; width:315px; height:30px; background:url(../images/bkg_form-search.gif) 0 0 no-repeat; padding:1px 0 0 16px; */}
|
549 |
.header .form-search label { float:left; width:24px; height:21px; text-align:left; text-indent:-999em; overflow:hidden; }
|
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; }
|
563 |
.header .form-language select.flags option { background-position:4px 50%; background-repeat:no-repeat; padding-left:25px; }
|
564 |
.header .links { float:right;/* margin:0 0 6px; */}
|
565 |
.header .links li { float:left; font-size:11px;/* background:url(../images/bkg_pipe1.gif) 100% 60% no-repeat;*/ padding:10px 15px 0 0px; }
|
566 |
+
.header .links a { color:<?php echo $header_link_color ?>; font-size: <?php echo $header_link_size ?>;}
|
567 |
+
.header .links .top-link-cart i{margin-left: 5px; color: <?php echo $header_link_color ?>}
|
568 |
.header-container .top-container { clear:both; padding:5px 10px 0 12px; text-align:right; }
|
569 |
.header-container .top-container a { font-size:11px; color:#ebbc58; }
|
570 |
|
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; }
|
1894 |
|
1895 |
/* social network block */
|
1896 |
#divnetworkshare{margin-top: 10px; text-align: left}
|
1897 |
+
#divnetworkshare a{color: <?php echo $header_link_color ?>}
|
1898 |
+
.followus{/*color: #fff; */vertical-align: top; padding: 10px 10px 0px 0px; display: inline-block;}
|
1899 |
|
1900 |
/* popup cart page */
|
1901 |
#popupcart{position: absolute; right: 0; z-index: 2; margin: 25px 14px 0px 0px; background:#fff; text-align: left; display: none; width: 250px}
|