commercebees_electromax_v1 - Version 1.0.1

Version Notes

Changed the following in this version:
Category placeholder image, Today's special attribute creation automated, Documentation changes, CSS changes in header (quickview class), CMS Home page content in admin panel

Download this release

Release Info

Developer Commerce Bees
Extension commercebees_electromax_v1
Version 1.0.1
Comparing to
See all releases


Code changes from version 1.0.0 to 1.0.1

CommerceBees_Electromax_Theme_Installation_Guide_V1.0.1.pdf ADDED
Binary file
CommerceBees_Electromax_Theme_Installation_Guide_V1_0.pdf DELETED
Binary file
app/code/local/Ameex/ElectromaxTheme/etc/config.xml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Ameex_ElectromaxTheme>
5
+ <version>1.0.1</version>
6
+ </Ameex_ElectromaxTheme>
7
+ </modules>
8
+ <global>
9
+ <resources>
10
+ <ElectromaxTheme_setup>
11
+ <setup>
12
+ <module>Ameex_ElectromaxTheme</module>
13
+ <class>Mage_Catalog_Model_Resource_Setup</class>
14
+ </setup>
15
+ </ElectromaxTheme_setup>
16
+ </resources>
17
+ </global>
18
+ </config>
app/code/local/Ameex/ElectromaxTheme/etc/system.xml ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <config>
2
+ <sections>
3
+ <catalog>
4
+ <groups>
5
+ <placeholder_category translate="label">
6
+ <label>Category Image Placeholders</label>
7
+ <sort_order>3000</sort_order>
8
+ <show_in_default>1</show_in_default>
9
+ <show_in_website>1</show_in_website>
10
+ <show_in_store>1</show_in_store>
11
+ <fields>
12
+ <placeholder_category>
13
+ <label>Placeholder path</label>
14
+ <frontend_type>text</frontend_type>
15
+ <comment><![CDATA[Upload the image in this folder <b>MAGENTO_ROOT_PATH</b>/media/wysiwyg/. Enter the file name with extension.]]></comment>
16
+ <sort_order>1</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
+ </placeholder_category>
21
+ </fields>
22
+ </placeholder_category>
23
+ </groups>
24
+ </catalog>
25
+ </sections>
26
+ </config>
app/code/local/Ameex/ElectromaxTheme/sql/ElectromaxTheme_setup/mysql4-install-1.0.1.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /* @var $installer Mage_Catalog_Model_Resource_Setup */
4
+ $installer = $this;
5
+
6
+ $installer->startSetup();
7
+ $installer->addAttribute('catalog_product', 'today_special', array(
8
+ 'label' => "Today's Special",
9
+ 'group' => 'General',
10
+ 'type' => 'int',
11
+ 'input' => 'boolean',
12
+ 'required' => false,
13
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
14
+ 'default' => '0',
15
+ ));
16
+
17
+ $installer->endSetup();
app/design/frontend/default/electromax/template/catalog/category/category.phtml CHANGED
@@ -15,22 +15,12 @@
15
  </a>
16
  <?php $_category = Mage::getModel('catalog/category')->load($_category->getId()) ?>
17
  <?php $_subcategories = $_category->getChildrenCategories() ?>
18
- <!--- product count under each category starts ------>
19
  <?php $collection = Mage::getModel('catalog/product')->getCollection()->addCategoryFilter($_category);?>
20
 
21
  <?php echo "(".count($collection).")"; ?>
22
- <!--- product count under each category ends ------ !>
23
- <!-- category count starts ---->
24
- <!--<?php $count = count($_subcategories); ?>
25
- <?php foreach($_subcategories as $sub){
26
- // while(count$sub->getChildrenCategories())
27
- $childcat = Mage::getModel('catalog/category')->load($sub->getId());
28
- $sub_cat = $childcat->getChildrenCategories();
29
- $count += count($sub_cat) ;
30
-
31
- }?>
32
- <?php echo "(".$count.")";?> -->
33
- <!-- category count ends ---->
34
  </li>
35
  <?php endforeach; ?>
36
  </ul>
15
  </a>
16
  <?php $_category = Mage::getModel('catalog/category')->load($_category->getId()) ?>
17
  <?php $_subcategories = $_category->getChildrenCategories() ?>
18
+ <!--- product count under each category starts -->
19
  <?php $collection = Mage::getModel('catalog/product')->getCollection()->addCategoryFilter($_category);?>
20
 
21
  <?php echo "(".count($collection).")"; ?>
22
+ <!--- product count under each category ends -->
23
+
 
 
 
 
 
 
 
 
 
 
24
  </li>
25
  <?php endforeach; ?>
26
  </ul>
app/design/frontend/default/electromax/template/catalog/category/view.phtml CHANGED
@@ -113,7 +113,10 @@ function getCategoryImage(Mage_Catalog_Model_Category $category, $width, $height
113
 
114
  <img src="<?php echo Mage::getBaseUrl('media').'catalog' . DS . 'category' . DS.$_categorysub->getThumbnail() ?>" alt="<?php echo $this->escapeHtml($_categorysub->getName())?>" alt="<?php echo $this->escapeHtml($_categorysub->getName())?>" />
115
  <?php } else {?>
116
- <div class="no-image"style="text-align:center;"><img src="<?php echo $this->getSkinUrl('images/No-image-palceholder.png');?>" alt="<?php echo $this->__('No Category Image Found')?>"/></div>
 
 
 
117
  <?php } ?>
118
  </a>
119
  <div class="cat-name" style="margin-top:7px;width:140px;margin:0 auto;font-weight:bold;">
113
 
114
  <img src="<?php echo Mage::getBaseUrl('media').'catalog' . DS . 'category' . DS.$_categorysub->getThumbnail() ?>" alt="<?php echo $this->escapeHtml($_categorysub->getName())?>" alt="<?php echo $this->escapeHtml($_categorysub->getName())?>" />
115
  <?php } else {?>
116
+ <div class="no-image"style="text-align:center;"><img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA).'wysiwyg/'.Mage::getStoreConfig('catalog/placeholder_category/placeholder_category')?>" alt="<?php echo $this->__('No Categorys Image Found')?>" width="180px"/>
117
+
118
+ </div>
119
+
120
  <?php } ?>
121
  </a>
122
  <div class="cat-name" style="margin-top:7px;width:140px;margin:0 auto;font-weight:bold;">
app/etc/modules/Ameex_ElectromaxTheme.xml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Ameex_ElectromaxTheme>
5
+ <codePool>local</codePool>
6
+ <active>true</active>
7
+ </Ameex_ElectromaxTheme>
8
+ </modules>
9
+ </config>
media/wysiwyg/.thumbs/wysiwyg/cards.png DELETED
Binary file
media/wysiwyg/.thumbs/wysiwyg/footer.jpg DELETED
Binary file
media/wysiwyg/.thumbs/wysiwyg/nemo.jpg DELETED
Binary file
media/wysiwyg/.thumbs/wysiwyg/toystory.jpg DELETED
Binary file
media/wysiwyg/.thumbs/wysiwyg/up.jpg DELETED
Binary file
media/wysiwyg/.thumbs/wysiwyg/walle.jpg DELETED
Binary file
media/wysiwyg/logo.png ADDED
Binary file
media/wysiwyg/offers1.png DELETED
Binary file
media/wysiwyg/sales1.jpg DELETED
Binary file
package.xml CHANGED
@@ -1,18 +1,19 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>commercebees_electromax_v1</name>
4
- <version>1.0.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://creativecommons.org/licenses/by/3.0/">Creative Commons License</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>Electromax is a responsive magento theme created by commercebees.com </summary>
10
- <description>Electromax is a responsive magento theme created by commercebees.com </description>
11
- <notes>This Theme is compatible with magento 1.6.X to 1.8.1</notes>
 
12
  <authors><author><name>Commerce Bees</name><user>CommerceBees</user><email>support@commercebees.com</email></author></authors>
13
- <date>2014-02-27</date>
14
- <time>13:30:13</time>
15
- <contents><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="electromax"><dir name="layout"><file name="catalog.xml" hash="7a1a47aef27a82cd179f5ffa8c9d5ac8"/><file name="catalogsearch.xml" hash="bee80b0f3708ee2de83597123041232c"/><file name="customer.xml" hash="54e4d011a95b022ba7df7cd8c7821855"/><file name="local.xml" hash="fcea2f1604948d835fc21c90a1c15414"/><file name="page.xml" hash="6a26ab47d1802f62990caf62e2ae6ef5"/></dir><dir name="template"><dir name="catalog"><dir name="category"><file name="category.phtml" hash="203be09e6fd44289bb4a23e2a4ce5a29"/><file name="view.phtml" hash="e5a4c90a3aacf16b2418fbda4fcf6369"/></dir><dir name="navigation"><file name="top.phtml" hash="8ddede3b4fd84a27d2ec3ca7dbdede25"/></dir><dir name="product"><dir name="compare"><file name="list.phtml" hash="0f6b56c677d32bdb317ce9698e296e7b"/><file name="list.phtml" hash="0f6b56c677d32bdb317ce9698e296e7b"/></dir><dir name="list"><file name="upsell.phtml" hash="dcbd0f531caf7df076a594c16892958c"/><file name="upsell.phtml" hash="dcbd0f531caf7df076a594c16892958c"/></dir><dir name="view"><file name="addtocart.phtml" hash="f1b0e8a933bb25f6d5d4a63735a816cd"/><file name="addtocart.phtml" hash="f1b0e8a933bb25f6d5d4a63735a816cd"/></dir><dir name="widget"><dir name="new"><dir name="content"><file name="new_grid.phtml" hash="098e183e0c0c2686d9b449e036fe65d1"/><file name="new_grid.phtml" hash="098e183e0c0c2686d9b449e036fe65d1"/></dir></dir></dir><file name="list.phtml" hash="31ee2b60c795381cb3e10eae05ee8563"/><file name="product-onsale.phtml" hash="95e76f70717f1ad0a336a959cc74f2f1"/><file name="today-special.phtml" hash="08e227d85d4ccb20765cfa5f5d1be195"/></dir></dir><dir name="catalogsearch"><file name="form.mini.phtml" hash="bc36983a912305a68d9c84e5ae617c76"/></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="db79e51cf8a59aefdec5105da8a5f559"/></dir><dir name="render"><file name="simple.phtml" hash="dc0f40db32a1b349ec3037f700cced7f"/></dir></dir><dir><dir name="cart"><dir name="item"><file name="default.phtml" hash="db79e51cf8a59aefdec5105da8a5f559"/></dir><dir name="render"><file name="simple.phtml" hash="dc0f40db32a1b349ec3037f700cced7f"/></dir></dir></dir><file name="cart.phtml" hash="78bb8b827bb30a34f220e1048efc78c3"/></dir><dir name="newsletter"><file name="subscribe.phtml" hash="2413cff56f743bdcc73dc5ca56fa26c4"/></dir><dir name="page"><dir name="html"><file name="footer.phtml" hash="55b7a1ea28ba56d37aad2ec0bd47de89"/><file name="head.phtml" hash="20505c72769ccd2a6e69396db6f291a6"/><file name="header.phtml" hash="f39970c62774c4daa4b45e12b8953993"/><file name="topmenu.phtml" hash="ce665755c0d0908fdd899b79821db9e2"/></dir></dir><dir name="persistent"><dir name="customer"><dir name="form"><file name="login.phtml" hash="6c43a91def6b0779cbb6a64aa259a1f1"/></dir></dir></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="wysiwyg"><file name="Canon.jpeg" hash="ec2e731556072caf2382d4c23fc6e7f3"/><file name="cards.png" hash="f2e6d34c53ebc1af47db34b69fe48090"/><file name="footer.jpg" hash="c929b3986f009ad180be127300cb8b48"/><file name="iphone-4-droid.jpg" hash="5eabde8d758c6990a14b78c34882eb7a"/><file name="ku-xlarge.jpg" hash="ec1eac773285bf9fd7a267f359b6b9f1"/><file name="offers1.png" hash="a8c8bd0240d3023b795a709c9ce6c43f"/><file name="sales1.jpg" hash="24b0945bc856503626ace37ebc3b3e4f"/><file name="samsung-smart-tv.jpg" hash="af56a73d76e6fd7c0adfa3c670593a7b"/><dir name=".thumbs"><dir name="wysiwyg"><file name="cards.png" hash="ce78e42fc8c1ecabc169caeecd67cbe2"/><file name="footer.jpg" hash="b3aa24e677cc3203299741ed745fb715"/><file name="nemo.jpg" hash="edbfb7a19bd9650c052fdfc84fc23736"/><file name="toystory.jpg" hash="0342c7c36de1c1657561466a9b3eddae"/><file name="up.jpg" hash="b402977e25da9ffe813ca59b816b2a09"/><file name="walle.jpg" hash="69c70f0117ec3b7c953952ffd35fa9de"/></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="electromax"><dir name="css"><file name="mobile.css" hash="2f8b53e4f17b58e71fdf20b1603c786a"/><file name="mycustom.css" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="response.css" hash="d4b8fac38d5506ce9d622907e838c681"/><file name="styles.css" hash="966b1e52312488bf51acd0cab8b1976b"/><file name="widgets.css" hash="c0d4e8c0e4a36a1fafa3f2ebe2e89c08"/></dir><dir name="images"><file name="Red_Box.png" hash="13fe69ab1bfaf2300e8e4adcc0e4904a"/><file name="arrow.png" hash="e093d54f87cbd327b47e0b72743ee85c"/><file name="arrows.png" hash="c57a5605525b2fb85ccdf7cc4561ade7"/><file name="arrows1.png" hash="3cc85cb706071cc175f3559532a7a354"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_trash.gif" hash="93c52f7c34c546d10ae9f7d6f2c4815c"/><file name="bullets.png" hash="acc66fce35a54d815a3aa3fd573cdd90"/><file name="cards.png" hash="f2e6d34c53ebc1af47db34b69fe48090"/><dir name="carousel"><file name="BlackArrow.png" hash="64a39c7c57371cf3a653d3553e8cd38c"/><file name="WhiteArrow.png" hash="1c7d0ea2006ddccf6180a6255c6e3855"/><file name="BlackArrow.png" hash="64a39c7c57371cf3a653d3553e8cd38c"/><file name="WhiteArrow.png" hash="1c7d0ea2006ddccf6180a6255c6e3855"/></dir><file name="cartyellow.jpg" hash="949afdbb71b0309283c49a64a04aa136"/><file name="catagoriesbg.jpg" hash="74666e745d12c573be3cef12cef9d326"/><file name="catagoriesborder.jpg" hash="4e9abec99a1f8483d66a76923cfd3c53"/><file name="compare.jpg" hash="f969f4959d4aea947d0af195a27f295f"/><file name="footer.jpg" hash="c929b3986f009ad180be127300cb8b48"/><file name="hamburger-retina.gif" hash="ddc74b6792388338fa0635c9a15dd5c7"/><file name="headerbg.jpg" hash="16c0627242f6880907ac9f3362dc3c69"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="loading.gif" hash="dd6b7b0bf5c3af22499abc0a9ee1e1b2"/><file name="logo.png" hash="6f3d49341a38e0cd6d9f43744840e97c"/><file name="menuborder.jpg" hash="ab347fa4e85cb7f788f20a1146e1b9b2"/><file name="menuyellow.jpg" hash="fdffd67ee6753c9a564924e063e1d284"/><file name="nemo.jpg" hash="7ea962b318832ba18caab917448f0756"/><file name="next.png" hash="ba44f074f5682ab97311d15d5077e88b"/><file name="offers2.png" hash="59c1820a1ff5b9cf8e793ca100f263f5"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="productname.jpg" hash="07ba65c96781d31361de97cb24dcff07"/><file name="products.png" hash="65f84cccb8bbc94ec5822ec4b8f1ad64"/><file name="sales1.jpg" hash="24b0945bc856503626ace37ebc3b3e4f"/><file name="search.jpg" hash="c959070a9039806fd64ecef422b6f10b"/><file name="star.png" hash="ebc2c4513aa83142eda13c07b1981735"/><file name="star3.png" hash="098958df4660808a2b382efc08e5e95d"/><file name="submit.gif" hash="18a9a9264aa2fbc659e41d65d36ecc9f"/><file name="toystory.jpg" hash="78431418683dea0dc82e990baed0e86a"/><file name="up.jpg" hash="97a89a100ea7387af842cd7bbddff7f3"/><file name="walle.jpg" hash="0e446ef957f6671ce3b066b242a20100"/><file name="wishlist.jpg" hash="dcb57a8ea9a7b1a012cb1551f04cdad4"/></dir><dir name="js"><dir name="jquery"><file name="jquery-1.9.0.min.js" hash="0652da382b6fceb033dfe2b6c06d4d11"/><file name="jquery.liquidcarousel.pack.js" hash="61b96c5320063625e5d5a7013f6683a5"/><file name="jquery.nivo.slider.js" hash="5e3b16dfc151304ed076a6a53d219f78"/><file name="noconflict.js" hash="f37c444b3261d796ed9f2a9ea8323678"/><file name="responsive-nav.js" hash="3063320632b01cc518c9722c3e486348"/><file name="selectnav.min.js" hash="250457916aa05b73b2c3d0ace66f930c"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="."><file name="CommerceBees_Electromax_Theme_Installation_Guide_V1_0.pdf" hash="20cd871854713ac6786c08ec0fbe28ea"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>7.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>commercebees_electromax_v1</name>
4
+ <version>1.0.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://creativecommons.org/licenses/by/3.0/">Creative Commons License</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>Electromax is a responsive magento theme created by commercebees.com</summary>
10
+ <description>Electromax is a responsive magento theme created by commercebees.com</description>
11
+ <notes>Changed the following in this version:&#xD;
12
+ Category placeholder image, Today's special attribute creation automated, Documentation changes, CSS changes in header (quickview class), CMS Home page content in admin panel</notes>
13
  <authors><author><name>Commerce Bees</name><user>CommerceBees</user><email>support@commercebees.com</email></author></authors>
14
+ <date>2014-03-06</date>
15
+ <time>16:16:48</time>
16
+ <contents><target name="magelocal"><dir name="Ameex"><dir name="ElectromaxTheme"><dir name="etc"><file name="config.xml" hash="b876580cb5bddaa091bb6396bc4ef379"/><file name="system.xml" hash="bfcb654e8e1cbf60bf7c463b1a98c491"/></dir><dir name="sql"><dir name="ElectromaxTheme_setup"><file name="mysql4-install-1.0.1.php" hash="57f04199723d97757c004c3b34ba2ef3"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ameex_ElectromaxTheme.xml" hash="63b9293d6d7fb3a2d8f244027a3dbcda"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="electromax"><dir name="layout"><file name="catalog.xml" hash="7a1a47aef27a82cd179f5ffa8c9d5ac8"/><file name="catalogsearch.xml" hash="bee80b0f3708ee2de83597123041232c"/><file name="customer.xml" hash="54e4d011a95b022ba7df7cd8c7821855"/><file name="local.xml" hash="fcea2f1604948d835fc21c90a1c15414"/><file name="page.xml" hash="6a26ab47d1802f62990caf62e2ae6ef5"/></dir><dir name="template"><dir name="catalog"><dir name="category"><file name="category.phtml" hash="8d8bf9fd993f81c40ec7320f549af123"/><file name="view.phtml" hash="6e511368fb6a3df139ff76e0f09255df"/></dir><dir name="navigation"><file name="top.phtml" hash="8ddede3b4fd84a27d2ec3ca7dbdede25"/></dir><dir name="product"><dir name="compare"><file name="list.phtml" hash="0f6b56c677d32bdb317ce9698e296e7b"/></dir><dir name="list"><file name="upsell.phtml" hash="dcbd0f531caf7df076a594c16892958c"/></dir><file name="list.phtml" hash="31ee2b60c795381cb3e10eae05ee8563"/><file name="product-onsale.phtml" hash="95e76f70717f1ad0a336a959cc74f2f1"/><file name="today-special.phtml" hash="08e227d85d4ccb20765cfa5f5d1be195"/><dir name="view"><file name="addtocart.phtml" hash="f1b0e8a933bb25f6d5d4a63735a816cd"/></dir><dir name="widget"><dir name="new"><dir name="content"><file name="new_grid.phtml" hash="098e183e0c0c2686d9b449e036fe65d1"/></dir></dir></dir></dir></dir><dir name="catalogsearch"><file name="form.mini.phtml" hash="bc36983a912305a68d9c84e5ae617c76"/></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="db79e51cf8a59aefdec5105da8a5f559"/></dir><dir name="render"><file name="simple.phtml" hash="dc0f40db32a1b349ec3037f700cced7f"/></dir></dir><file name="cart.phtml" hash="78bb8b827bb30a34f220e1048efc78c3"/></dir><dir name="newsletter"><file name="subscribe.phtml" hash="2413cff56f743bdcc73dc5ca56fa26c4"/></dir><dir name="page"><dir name="html"><file name="footer.phtml" hash="55b7a1ea28ba56d37aad2ec0bd47de89"/><file name="head.phtml" hash="20505c72769ccd2a6e69396db6f291a6"/><file name="header.phtml" hash="f39970c62774c4daa4b45e12b8953993"/><file name="topmenu.phtml" hash="ce665755c0d0908fdd899b79821db9e2"/></dir></dir><dir name="persistent"><dir name="customer"><dir name="form"><file name="login.phtml" hash="6c43a91def6b0779cbb6a64aa259a1f1"/></dir></dir></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="wysiwyg"><file name="Canon.jpeg" hash="ec2e731556072caf2382d4c23fc6e7f3"/><file name="cards.png" hash="f2e6d34c53ebc1af47db34b69fe48090"/><file name="footer.jpg" hash="c929b3986f009ad180be127300cb8b48"/><file name="iphone-4-droid.jpg" hash="5eabde8d758c6990a14b78c34882eb7a"/><file name="ku-xlarge.jpg" hash="ec1eac773285bf9fd7a267f359b6b9f1"/><file name="logo.png" hash="6f3d49341a38e0cd6d9f43744840e97c"/><file name="samsung-smart-tv.jpg" hash="af56a73d76e6fd7c0adfa3c670593a7b"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="electromax"><dir name="css"><file name="mobile.css" hash="761669e2b4a848d5cd917e15ccd0d84f"/><file name="styles.css" hash="c62fe9dc6a34269143f0de8e7a5c8a98"/><file name="widgets.css" hash="c0d4e8c0e4a36a1fafa3f2ebe2e89c08"/></dir><dir name="images"><file name="Red_Box.png" hash="13fe69ab1bfaf2300e8e4adcc0e4904a"/><file name="arrow.png" hash="e093d54f87cbd327b47e0b72743ee85c"/><file name="arrows.png" hash="c57a5605525b2fb85ccdf7cc4561ade7"/><file name="arrows1.png" hash="3cc85cb706071cc175f3559532a7a354"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_trash.gif" hash="93c52f7c34c546d10ae9f7d6f2c4815c"/><file name="bullets.png" hash="acc66fce35a54d815a3aa3fd573cdd90"/><file name="cards.png" hash="f2e6d34c53ebc1af47db34b69fe48090"/><dir name="carousel"><file name="BlackArrow.png" hash="64a39c7c57371cf3a653d3553e8cd38c"/><file name="WhiteArrow.png" hash="1c7d0ea2006ddccf6180a6255c6e3855"/></dir><file name="cartyellow.jpg" hash="949afdbb71b0309283c49a64a04aa136"/><file name="catagoriesbg.jpg" hash="74666e745d12c573be3cef12cef9d326"/><file name="catagoriesborder.jpg" hash="4e9abec99a1f8483d66a76923cfd3c53"/><file name="compare.jpg" hash="f969f4959d4aea947d0af195a27f295f"/><file name="footer.jpg" hash="c929b3986f009ad180be127300cb8b48"/><file name="hamburger-retina.gif" hash="ddc74b6792388338fa0635c9a15dd5c7"/><file name="headerbg.jpg" hash="16c0627242f6880907ac9f3362dc3c69"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="loading.gif" hash="dd6b7b0bf5c3af22499abc0a9ee1e1b2"/><file name="logo.png" hash="6f3d49341a38e0cd6d9f43744840e97c"/><file name="menuborder.jpg" hash="ab347fa4e85cb7f788f20a1146e1b9b2"/><file name="menuyellow.jpg" hash="fdffd67ee6753c9a564924e063e1d284"/><file name="nemo.jpg" hash="7ea962b318832ba18caab917448f0756"/><file name="next.png" hash="ba44f074f5682ab97311d15d5077e88b"/><file name="offers2.png" hash="59c1820a1ff5b9cf8e793ca100f263f5"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="productname.jpg" hash="07ba65c96781d31361de97cb24dcff07"/><file name="products.png" hash="65f84cccb8bbc94ec5822ec4b8f1ad64"/><file name="sales1.jpg" hash="24b0945bc856503626ace37ebc3b3e4f"/><file name="search.jpg" hash="c959070a9039806fd64ecef422b6f10b"/><file name="star.png" hash="ebc2c4513aa83142eda13c07b1981735"/><file name="star3.png" hash="098958df4660808a2b382efc08e5e95d"/><file name="submit.gif" hash="18a9a9264aa2fbc659e41d65d36ecc9f"/><file name="toystory.jpg" hash="78431418683dea0dc82e990baed0e86a"/><file name="up.jpg" hash="97a89a100ea7387af842cd7bbddff7f3"/><file name="walle.jpg" hash="0e446ef957f6671ce3b066b242a20100"/><file name="wishlist.jpg" hash="dcb57a8ea9a7b1a012cb1551f04cdad4"/></dir><dir name="js"><dir name="jquery"><file name="jquery-1.9.0.min.js" hash="0652da382b6fceb033dfe2b6c06d4d11"/><file name="jquery.liquidcarousel.pack.js" hash="61b96c5320063625e5d5a7013f6683a5"/><file name="jquery.nivo.slider.js" hash="5e3b16dfc151304ed076a6a53d219f78"/><file name="noconflict.js" hash="f37c444b3261d796ed9f2a9ea8323678"/><file name="responsive-nav.js" hash="3063320632b01cc518c9722c3e486348"/><file name="selectnav.min.js" hash="250457916aa05b73b2c3d0ace66f930c"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="."><file name="CommerceBees_Electromax_Theme_Installation_Guide_V1.0.1.pdf" hash="56cd6511928c816307ec8657a7885449"/></dir></target></contents>
17
  <compatible/>
18
  <dependencies><required><php><min>5.2.0</min><max>7.0.0</max></php></required></dependencies>
19
  </package>
skin/frontend/default/electromax/css/mobile.css CHANGED
@@ -19,21 +19,21 @@ background: #000;
19
  .cms-index-index .ratings{float:left;}
20
  .col2-left-layout .col-main{width: 97%;margin-right: 0%;padding-right:1%;margin-left:1%;}
21
  .col2-left-layout .col-main .form-list input.input-text{width:90%;}
22
- .header .logo img{width:250px;margin:4px 0 0 0}
23
  #slider{ max-width:500px;overflow:hidden}
24
 
25
  /*----header changes starts-----*/
26
- .header .quick-access {padding:0;position:relative;float: left;width:97%;}
27
- .header .welcome-msg {margin: -11% 0 0 0;text-align:left;font-size: 11px;}
28
- .header .links {float: left;margin: 2% 0% 0% 1%;width: 100%;}
29
  .header .links li {padding: 0 4px 0 7px;}
30
  .header .links a {font-family: Myraid Pro;font-size: 13px;}
31
  .header .form-search label {display:none}
32
 
33
  /*----header changes ends-----*/
34
  /*---search bar style starts-----*/
35
- .header .logo {margin-top:0%;position:relative;z-index:100;}
36
- .header .form-search {position: relative;/*top: 8%;right: 0%;*/left:55%;width: 200px;height: 32px;padding: 1px 0 0 0px;margin: 0px 0 0 0px;}
37
  .header .form-search input.input-text {float: left;margin-left: 4%;border-color: #fff;width: 150px;height: 25px;background-color: #fff;}
38
  .header .form-search button.button span {height: 31px;}
39
  .header .form-search button.button span span {background-position: 100% 15%;padding: 0px 8px 0 1px;}
@@ -70,15 +70,15 @@ background: #000;
70
  /*.widget-new-products .products-grid li.first{margin-left:6%;}
71
  .widget-new-products .products-grid li.item {margin-left:6%;}*/
72
  .products-bg {width:35%}
73
- .main-bg {min-width: 200px;min-height: 208px;
74
- overflow: hidden;}
75
  .widget-new-products .next-product {margin: 9% 0% 0 0%;}
 
76
  /*-----new Products style ends--------*/
77
  /*-------category&today products styling starts-----------*/
78
- .today-special {margin-top:3%;clear: none;float:left;/*margin-right:2%;*/width:49%;}
79
- .today-special .today-title {margin-top:0%;width:87%;margin-left: 13%;}
80
- .today-special .products-grid li.item{margin:1% 0 0 6%;}
81
- .today-special .products-bg{width:100%;padding:9% 0 0 3%;}
82
  .cat-li {padding: 1.9em 0 1.9em 1em;}
83
  .category-block .cat-li.firstli {
84
  padding-top: 0.7em !important;
@@ -287,27 +287,28 @@ input.qty {width: 1.9em !important;}
287
  .js #nav { display: none; }
288
  .selectnav option{border: 1px solid;color:#fff;padding:10px !important; margin:2px;text-shadow:0 1px 0 rgba(0,0,0,0.4); -webkit-appearance: none; -moz-appearance: none;}
289
  .js .selectnav { display: block; background: #B83939 !important;width: 100%;height: 35px;color: #fff; font-size: 15px;}
290
- .nav-container {margin: 8% 0 0 0;background:none !important;}
291
  /*.header .logo {
292
  background: #000;
293
  }*/
294
  .header{width:100%;}
295
- .header .logo img{width:270px;}
296
  #slider{ max-width:590px;overflow:hidden}
297
 
298
  /*----header changes starts-----*/
299
- .header .quick-access {padding:0;position:absolute;float: left;width: 321px;}
300
- .header .welcome-msg {margin:-2% 9% 0% 1%;text-align:left;}
301
- .header .links {float: left;margin: 15% 9% 1% 1%;width:145%;}
302
  .header .links li {padding: 0 4px 0 7px;}
303
  .header .links a {font-family: Myraid Pro;font-size: 13px;}
304
  .header .form-search label {display:none}
 
305
 
306
  /*----header changes ends-----*/
307
  /*---search bar style starts-----*/
308
- .header .logo {margin-top:1%;position:relative;z-index:100;}
309
- .header .form-search {position: absolute;top: 9%;right: 0%;left:80%;width: 308px;height: 32px;background: url(../images/bkg_form-search.gif) 0 0 no-repeat;padding: 1px 0 0 0px;margin: 3px 0 0 0px;}
310
- .header .form-search input.input-text {float: left;margin-left: 24%;border-color: #fff;width: 185px;height: 25px;background-color: #fff;}
311
  .header .form-search button.button span {height: 31px;}
312
  .header .form-search button.button span span {background-position: 100% 15%;padding: 0px 8px 0 1px;}
313
  /*---search bar style ends-------*/
@@ -353,6 +354,7 @@ overflow: hidden;}
353
  /*-------category&today products styling starts-----------*/
354
  .today-special {clear: none;float:left;/*margin-right: -4%;*/width:43%;margin-left:6%;margin-top:3%}
355
  .today-special .today-title {margin-top:0%;width: 81%;margin-left:13px;}
 
356
  .cat-li {padding: 1.9em 0 1.9em 1em;}
357
  .category-block .cat-li.firstli {
358
  padding-top: 0.7em !important;
@@ -503,16 +505,16 @@ input.qty {width: 1.9em !important;}
503
  .today-special .next-product {margin: 13% 0% 0 0%;}
504
  /*----header changes starts-----*/
505
  .header .quick-access {padding:0;position:absolute;float: left;width: 305px;}
506
- .header .welcome-msg {margin:-4% 0 0% 1%;text-align:left;}
507
- .header .links {float: left;margin: 8% 0 4% 1%;}
508
  .header .links li {padding: 0 4px 0 7px;}
509
  .header .links a {font-family: Myraid Pro;font-size: 11.5px;}
510
  .header .form-search label {display:none}
511
 
512
  /*----header changes ends-----*/
513
  /*---search bar style starts-----*/
514
- .header .logo {margin-top:0%;position:relative;z-index:100;}
515
- .header .form-search {position: absolute;top: 0%;right: -1%;width: 188px;height: 21px;background: url(../images/bkg_form-search.gif) 0 0 no-repeat;padding: 1px 0 0 0px;margin: 3px 0 0 0px;}
516
  .header .form-search input.input-text {float: left;margin-left: 27%;border-color: #fff;width: 100px;height: 20px;background-color: #fff;}
517
  .header .form-search button.button span {height: 26px;}
518
  .header .form-search button.button span span {background-position: 100% 15%;padding: 0px 8px 0 1px;}
@@ -695,14 +697,17 @@ background: #000;
695
  .col2-left-layout .col-main{width: 97%;margin-right: 0%;padding-right:1%;margin-left:1%;}
696
  .col2-left-layout .col-main .form-list input.input-text{width:90%;}
697
  body{width:100%;}
698
- .header .logo img{width: 340px;}
699
 
700
  .header {width: 100%;margin:0 ;}
701
  .breadcrumbs {margin: 5px 0 13px 2px;padding-top: 10px;}
702
  .nav-container {/*width:80%;margin:0 ;*/}
703
- .header .quick-access {padding:19px 0px 1px 0;}
704
  .place{margin-right:32px}
705
- @-moz-document url-prefix() {.header .welcome-msg { margin: -14% 0 0 0; text-align: right;}}
 
 
 
706
 
707
  /* -----Homepage products Styling starts----*/
708
  .widget-new-products .products-grid .ulone{margin-top:0 !important;}
@@ -744,7 +749,7 @@ body{width:100%;}
744
  /*.onsale-div{margin-left:2%;}*/
745
 
746
  .left-overall{width: 23%;margin-left: 1%;}
747
- .productsNew {margin-left:0;}
748
  .product-view{width:100%;}
749
 
750
  /*---------Inner page styling starts------------*/
@@ -848,13 +853,15 @@ input.qty {width: 1.9em !important;}
848
  .send-friend{margin-left:2%;width:106.5%;}
849
  }
850
  /*---------------Ipad Protrait mode style ends---------*/
 
 
851
  @media only screen and (min-width: 1000px) and (max-width: 1040px) {
852
 
853
  .header{width:898px;margin:0 auto;}
854
  .nav-container {width:100%;margin:0 ;}
855
  .place {margin-right: 37px;}
856
  .free_shipping_font {margin-top:-8%;}
857
- @-moz-document url-prefix() {.header .welcome-msg {margin: -15% 0% 0% 51%;text-align:right;}}
858
  .footer-container{width:900px;}
859
  /*---------Inner page styling starts------------*/
860
  .pager .amount {float: left;}
@@ -865,7 +872,8 @@ input.qty {width: 1.9em !important;}
865
  .category-image img {width: 85%;}
866
 
867
  /*.catalog-category-view .products-grid .ratings {padding:2% 0 0 12%;}*/
868
-
 
869
 
870
  .product-view .box-tags .form-add input.input-text {width:95%;}
871
  .product-view .box-tags .form-add button.button span{background:#C4121C;border:none;margin:0px 0 0 13px;padding: 0 12px 0 0;}
19
  .cms-index-index .ratings{float:left;}
20
  .col2-left-layout .col-main{width: 97%;margin-right: 0%;padding-right:1%;margin-left:1%;}
21
  .col2-left-layout .col-main .form-list input.input-text{width:90%;}
22
+ .header .logo img{width:200px;margin:4px 0 0 0}
23
  #slider{ max-width:500px;overflow:hidden}
24
 
25
  /*----header changes starts-----*/
26
+ .header .quick-access {padding:0;position:absolute;float: left;width:97%;}
27
+ .header .welcome-msg {margin: 0% 0 0 0;text-align:left;font-size: 12px;}
28
+ .header .links {float: left;margin: 4% 0% 0% 1%;width: 100%;}
29
  .header .links li {padding: 0 4px 0 7px;}
30
  .header .links a {font-family: Myraid Pro;font-size: 13px;}
31
  .header .form-search label {display:none}
32
 
33
  /*----header changes ends-----*/
34
  /*---search bar style starts-----*/
35
+ .header .logo { margin-top: 8%;padding: 1% 0 6%;position:relative;z-index:100;}
36
+ .header .form-search {position: relative;top: 12%;/*top: 8%;right: 0%;*/left:55%;width: 200px;height: 32px;padding: 1px 0 0 0px;margin: 0px 0 0 0px;}
37
  .header .form-search input.input-text {float: left;margin-left: 4%;border-color: #fff;width: 150px;height: 25px;background-color: #fff;}
38
  .header .form-search button.button span {height: 31px;}
39
  .header .form-search button.button span span {background-position: 100% 15%;padding: 0px 8px 0 1px;}
70
  /*.widget-new-products .products-grid li.first{margin-left:6%;}
71
  .widget-new-products .products-grid li.item {margin-left:6%;}*/
72
  .products-bg {width:35%}
73
+ .main-bg {min-width: 200px;min-height: 208px;overflow: hidden;}
 
74
  .widget-new-products .next-product {margin: 9% 0% 0 0%;}
75
+ .std .widget-new-products ul{padding-left: 0;}
76
  /*-----new Products style ends--------*/
77
  /*-------category&today products styling starts-----------*/
78
+ .today-special {clear: none;float:left;/*margin-right:2%;*/width:49%;margin:3% 0 0 3%;}
79
+ .today-special .today-title {margin-top:0%;width:87%;margin-left: 6%;}
80
+ .today-special .products-grid li.item{margin:1% 0 0 10%;width: 210px;}
81
+ .today-special .products-bg{width:100%;padding:9% 0 0 7%;}
82
  .cat-li {padding: 1.9em 0 1.9em 1em;}
83
  .category-block .cat-li.firstli {
84
  padding-top: 0.7em !important;
287
  .js #nav { display: none; }
288
  .selectnav option{border: 1px solid;color:#fff;padding:10px !important; margin:2px;text-shadow:0 1px 0 rgba(0,0,0,0.4); -webkit-appearance: none; -moz-appearance: none;}
289
  .js .selectnav { display: block; background: #B83939 !important;width: 100%;height: 35px;color: #fff; font-size: 15px;}
290
+ .nav-container {margin: 10% 0 0 0;background:none !important;}
291
  /*.header .logo {
292
  background: #000;
293
  }*/
294
  .header{width:100%;}
295
+ .header .logo img{width:220px;}
296
  #slider{ max-width:590px;overflow:hidden}
297
 
298
  /*----header changes starts-----*/
299
+ .header .quick-access {padding:0;position:absolute;float: left;width: 96%;}
300
+ .header .welcome-msg {margin:0;text-align:left;float: left;font-size: 13px}
301
+ .header .links {float: left;margin: 8% 2% 1% 1%;width:91%;}
302
  .header .links li {padding: 0 4px 0 7px;}
303
  .header .links a {font-family: Myraid Pro;font-size: 13px;}
304
  .header .form-search label {display:none}
305
+ .place {margin-right: 0;}
306
 
307
  /*----header changes ends-----*/
308
  /*---search bar style starts-----*/
309
+ .header .logo {margin-top:5%;float:left;position:relative;z-index:100;}
310
+ .header .form-search {position: absolute;top: 0%;right: 0%;/*left:87%;*/float:right;width: 220px;height: 32px;padding: 1px 0 0 0px;margin: 3px 0 0 0px;}
311
+ .header .form-search input.input-text {float: left;margin-left: 0%;border-color: #fff;width: 180px;height: 25px;background-color: #fff;}
312
  .header .form-search button.button span {height: 31px;}
313
  .header .form-search button.button span span {background-position: 100% 15%;padding: 0px 8px 0 1px;}
314
  /*---search bar style ends-------*/
354
  /*-------category&today products styling starts-----------*/
355
  .today-special {clear: none;float:left;/*margin-right: -4%;*/width:43%;margin-left:6%;margin-top:3%}
356
  .today-special .today-title {margin-top:0%;width: 81%;margin-left:13px;}
357
+ .today-special .products-grid li.item{margin: 1% 0 0 9%;}
358
  .cat-li {padding: 1.9em 0 1.9em 1em;}
359
  .category-block .cat-li.firstli {
360
  padding-top: 0.7em !important;
505
  .today-special .next-product {margin: 13% 0% 0 0%;}
506
  /*----header changes starts-----*/
507
  .header .quick-access {padding:0;position:absolute;float: left;width: 305px;}
508
+ .header .welcome-msg {margin:0% 0 0% 1%;text-align:left;}
509
+ .header .links {float: left;margin: 16% 0 4% 1%;}
510
  .header .links li {padding: 0 4px 0 7px;}
511
  .header .links a {font-family: Myraid Pro;font-size: 11.5px;}
512
  .header .form-search label {display:none}
513
 
514
  /*----header changes ends-----*/
515
  /*---search bar style starts-----*/
516
+ .header .logo {margin-top:13%;position:relative;z-index:100;}
517
+ .header .form-search {position: absolute;top: 0%;right: -2%;width: 188px;height: 21px;padding: 1px 0 0 0px;margin: 0;}
518
  .header .form-search input.input-text {float: left;margin-left: 27%;border-color: #fff;width: 100px;height: 20px;background-color: #fff;}
519
  .header .form-search button.button span {height: 26px;}
520
  .header .form-search button.button span span {background-position: 100% 15%;padding: 0px 8px 0 1px;}
697
  .col2-left-layout .col-main{width: 97%;margin-right: 0%;padding-right:1%;margin-left:1%;}
698
  .col2-left-layout .col-main .form-list input.input-text{width:90%;}
699
  body{width:100%;}
700
+ .header .logo img{width: 240px;}
701
 
702
  .header {width: 100%;margin:0 ;}
703
  .breadcrumbs {margin: 5px 0 13px 2px;padding-top: 10px;}
704
  .nav-container {/*width:80%;margin:0 ;*/}
705
+ .header .quick-access {padding:19px 0px 1px 0;width:310px;}
706
  .place{margin-right:32px}
707
+ @-moz-document url-prefix() {.header .welcome-msg { margin: 0 0 0 0; text-align: right;}}
708
+ .header .form-search{width: 330px;right: 2%;margin: 50px 0 0;}
709
+ .header .form-search input.input-text{width:250px;}
710
+ .header .links{margin: 15% 0 0;}
711
 
712
  /* -----Homepage products Styling starts----*/
713
  .widget-new-products .products-grid .ulone{margin-top:0 !important;}
749
  /*.onsale-div{margin-left:2%;}*/
750
 
751
  .left-overall{width: 23%;margin-left: 1%;}
752
+ .productsNew {margin-left:0;width:75%;}
753
  .product-view{width:100%;}
754
 
755
  /*---------Inner page styling starts------------*/
853
  .send-friend{margin-left:2%;width:106.5%;}
854
  }
855
  /*---------------Ipad Protrait mode style ends---------*/
856
+
857
+ /*Ipda Landscape Mode Style Starts------------*/
858
  @media only screen and (min-width: 1000px) and (max-width: 1040px) {
859
 
860
  .header{width:898px;margin:0 auto;}
861
  .nav-container {width:100%;margin:0 ;}
862
  .place {margin-right: 37px;}
863
  .free_shipping_font {margin-top:-8%;}
864
+ @-moz-document url-prefix() {.header .welcome-msg {margin: 0%;text-align:right;}}
865
  .footer-container{width:900px;}
866
  /*---------Inner page styling starts------------*/
867
  .pager .amount {float: left;}
872
  .category-image img {width: 85%;}
873
 
874
  /*.catalog-category-view .products-grid .ratings {padding:2% 0 0 12%;}*/
875
+ .header .form-search{ margin: 40px 0 0;width: 327px;}
876
+ .header .form-search input.input-text{width: 250px;}
877
 
878
  .product-view .box-tags .form-add input.input-text {width:95%;}
879
  .product-view .box-tags .form-add button.button span{background:#C4121C;border:none;margin:0px 0 0 13px;padding: 0 12px 0 0;}
skin/frontend/default/electromax/css/mycustom.css DELETED
File without changes
skin/frontend/default/electromax/css/response.css DELETED
@@ -1,157 +0,0 @@
1
- /* ------------------------------------------
2
- NECESSARY STYLES FOR RESPONSIVE NAV
3
- --------------------------------------------- */
4
-
5
- .nav-collapse ul {
6
- margin: 0;
7
- padding: 0;
8
- width: 100%;
9
- display: block;
10
- list-style: none;
11
- }
12
-
13
- .nav-collapse li {
14
- width: 100%;
15
- display: block;
16
- }
17
-
18
- .js .nav-collapse {
19
- clip: rect(0 0 0 0);
20
- max-height: 0;
21
- position: absolute;
22
- display: block;
23
- overflow: hidden;
24
- zoom: 1;
25
- }
26
-
27
- .nav-collapse.opened {
28
- max-height: 9999px;
29
- }
30
-
31
- @media screen and (min-width: 40em) {
32
- .js .nav-collapse {
33
- position: relative;
34
- max-height: none;
35
- }
36
- .nav-toggle {
37
- display: none;
38
- }
39
- }
40
-
41
-
42
- /* ------------------------------------------
43
- DEMO PAGE'S STYLES
44
- --------------------------------------------- */
45
- body, div,
46
- h1, h2, h3, h4, h5, h6,
47
- p, blockquote, pre, dl, dt, dd, ol, ul, li, hr,
48
- fieldset, form, label, legend, th, td,
49
- article, aside, figure, footer, header, hgroup, menu, nav, section,
50
- summary, hgroup {
51
- margin: 0;
52
- padding: 0;
53
- border: 0;
54
- }
55
-
56
- a:active,
57
- a:hover {
58
- outline: 0;
59
- }
60
-
61
- @-webkit-viewport { width: device-width; }
62
- @-moz-viewport { width: device-width; }
63
- @-ms-viewport { width: device-width; }
64
- @-o-viewport { width: device-width; }
65
- @viewport { width: device-width; }
66
-
67
- body {
68
- -webkit-text-size-adjust: 100%;
69
- -ms-text-size-adjust: 100%;
70
- text-size-adjust: 100%;
71
- color: #37302a;
72
- background: #fff;
73
- font: normal 100%/1.4 sans-serif;
74
- }
75
-
76
- .nav-collapse,
77
- .nav-collapse * {
78
- -moz-box-sizing: border-box;
79
- -webkit-box-sizing: border-box;
80
- box-sizing: border-box;
81
- }
82
-
83
- .nav-collapse,
84
- .nav-collapse ul {
85
- list-style: none;
86
- width: 100%;
87
- float: left;
88
- }
89
-
90
- .nav-collapse li {
91
- float: left;
92
- width: 100%;
93
- }
94
-
95
- @media screen and (min-width: 40em) {
96
- .nav-collapse li {
97
- width: 25%;
98
- *width: 24.9%; /* IE7 Hack */
99
- _width: 19%; /* IE6 Hack */
100
- }
101
- }
102
-
103
- .nav-collapse a {
104
- color: #fff;
105
- text-decoration: none;
106
- width: 100%;
107
- background: #f4421a;
108
- border-bottom: 1px solid white;
109
- padding: 0.7em 1em;
110
- float: left;
111
- }
112
-
113
- @media screen and (min-width: 40em) {
114
- .nav-collapse a {
115
- margin: 0;
116
- padding: 1em;
117
- float: left;
118
- text-align: center;
119
- border-bottom: 0;
120
- border-right: 1px solid white;
121
- }
122
- }
123
-
124
- .nav-collapse ul ul a {
125
- background: #ca3716;
126
- padding-left: 2em;
127
- }
128
-
129
- @media screen and (min-width: 40em) {
130
- .nav-collapse ul ul a {
131
- display: none;
132
- }
133
- }
134
-
135
- .nav-toggle {
136
- -webkit-touch-callout: none;
137
- -webkit-user-select: none;
138
- -moz-user-select: none;
139
- -ms-user-select: none;
140
- user-select: none;
141
- width: 70px;
142
- height: 55px;
143
- float: right;
144
- text-indent: -9999px;
145
- overflow: hidden;
146
- background: #f4421a url("hamburger.gif") no-repeat 50% 33%;
147
- }
148
-
149
- @media screen and (-webkit-min-device-pixel-ratio: 1.3), screen and (min--moz-device-pixel-ratio: 1.3), screen and (-o-min-device-pixel-ratio: 2 / 1), screen and (min-device-pixel-ratio: 1.3), screen and (min-resolution: 192dpi), screen and (min-resolution: 2dppx) {
150
- .nav-toggle {
151
- background-image: url("hamburger-retina.gif");
152
- -webkit-background-size: 100px 100px;
153
- -moz-background-size: 100px 100px;
154
- -o-background-size: 100px 100px;
155
- background-size: 100px 100px;
156
- }
157
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/electromax/css/styles.css CHANGED
@@ -2210,13 +2210,13 @@ position: relative;}
2210
  /*---------------header right side content starts---------*/
2211
  /*.header .welcome-msg { margin: -10% 0 0 51%; color:#8B8B8B;font-weight:bold; text-align:center; }*/
2212
  .header .welcome-msg {
2213
- margin: -14% 0px 0% 51%;
2214
 
2215
  }
2216
- .header .links { margin:9% 0 0 0; }
2217
  /*@-moz-document url-prefix() { .header .welcome-msg { margin: -12% 0 0 51%; color:#8B8B8B;font-weight:bold; text-align:right; } }*/
2218
- .header .quick-access {float: right;padding: 10px 4px 0 0;width: 600px;}
2219
- @-moz-document url-prefix() {.header .links { margin:-1% 0 0 0; }}
2220
  .header .form-search { position:absolute; top:4%; right:4%; width:362px; height:30px; /*background:url(../images/bkg_form-search.gif) 0 0 no-repeat;*/ padding:1px 0 0 16px; margin:27px 0 0 0px;}
2221
  .header .form-search input.input-text { float: left;border-color: #fff;width: 300px;height: 26px;background-color: #fff;}
2222
  /*.header .quick-access { float:right; width:600px; padding:0px 0px 0 0; }*/
2210
  /*---------------header right side content starts---------*/
2211
  /*.header .welcome-msg { margin: -10% 0 0 51%; color:#8B8B8B;font-weight:bold; text-align:center; }*/
2212
  .header .welcome-msg {
2213
+ margin: -3% 0px 0% 51%;
2214
 
2215
  }
2216
+ .header .links { margin:11% 0 0 0; }
2217
  /*@-moz-document url-prefix() { .header .welcome-msg { margin: -12% 0 0 51%; color:#8B8B8B;font-weight:bold; text-align:right; } }*/
2218
+ .header .quick-access {float: right;padding: 10px 4px 0 0;width: 450px;}
2219
+ /*@-moz-document url-prefix() {.header .links { margin:-1% 0 0 0; }}*/
2220
  .header .form-search { position:absolute; top:4%; right:4%; width:362px; height:30px; /*background:url(../images/bkg_form-search.gif) 0 0 no-repeat;*/ padding:1px 0 0 16px; margin:27px 0 0 0px;}
2221
  .header .form-search input.input-text { float: left;border-color: #fff;width: 300px;height: 26px;background-color: #fff;}
2222
  /*.header .quick-access { float:right; width:600px; padding:0px 0px 0 0; }*/