Advertisement
Guest User

viewwww

a guest
Aug 31st, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.03 KB | None | 0 0
  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) 2014 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 view template
  29. *
  30. * @see Mage_Catalog_Block_Product_View
  31. * @see Mage_Review_Block_Product_View
  32. */
  33. ?>
  34. <?php $_helper = $this->helper('catalog/output'); ?>
  35. <?php $pageLayout = str_replace(array('page/','.phtml'),'',Mage::app()->getLayout()->getBlock('root')->getTemplate()); ?>
  36. <?php $_product = $this->getProduct(); ?>
  37. <?php $setting = Mage::helper('em0113settings'); ?>
  38.  
  39.  
  40.  
  41.  
  42. <script type="text/javascript">
  43. var optionsPrice = new Product.OptionsPrice(<?php echo $this->getJsonConfig() ?>);
  44. </script>
  45. <div class="Individual">
  46. <div id="messages_product_view"><?php echo $this->getMessagesBlock()->getGroupedHtml() ?></div>
  47. <div class="product-view">
  48. <div class="product-essential">
  49. <form action="<?php echo $this->getSubmitUrl($_product) ?>" method="post" id="product_addtocart_form"<?php if($_product->getOptions()): ?> enctype="multipart/form-data"<?php endif; ?>>
  50. <?php echo $this->getBlockHtml('formkey') ?>
  51. <div class="no-display">
  52. <input type="hidden" name="product" value="<?php echo $_product->getId() ?>" />
  53. <input type="hidden" name="related_product" id="related-products-field" value="" />
  54. </div>
  55.  
  56. <div class="product-img-box" style="width:<?php echo $setting->getImageProduct_BaseImageWidth(390) ?>px;">
  57. <?php echo $this->getChildHtml('media') ?>
  58. </div>
  59. <?php
  60. $related_product_collection = $_product->getRelatedProductCollection();
  61. $related_product_collection->AddStoreFilter();
  62. $count = count($related_product_collection);
  63. ?>
  64. <div class="product-shop <?php if($count > 0 && $pageLayout=='1column'): ?>has-related<?php else: ?>no-related<?php endif ?>">
  65. <div class="product-shop-wrapper <?php if($_product->isGrouped()): ?>grouped<?php endif ?>">
  66. <?php list($_prev_prod, $_next_prod) = Mage::helper('em0113settings/product')->getPreviousNextProducts($this->getProduct()); ?>
  67.  
  68. <!--<?php if($_prev_prod != NULL): ?>
  69. <a href="<?php echo $_prev_prod->getProductUrl(); ?>" title="<?php echo $this->__('Previous') ?>" class="prev"><?php echo $this->__('Previous') ?></a>
  70. <?php endif; ?>
  71.  
  72. <?php if($_next_prod != NULL): ?>
  73. <a href="<?php echo $_next_prod->getProductUrl(); ?>" title="<?php echo $this->__('Next') ?>" class="next"><?php echo $this->__('Next') ?></a>
  74. <?php endif; ?>-->
  75.  
  76. <div class="product-name">
  77. <h2><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></h2>
  78. </div>
  79.  
  80. <?php echo $this->getReviewsSummaryHtml($_product, false, true)?>
  81.  
  82. <!--<?php if ($this->canEmailToFriend()): ?>
  83. <p class="email-friend"><a href="<?php echo $this->helper('catalog/product')->getEmailToFriendUrl($_product) ?>"><?php echo $this->__('Email to a Friend') ?></a></p>
  84. <?php endif; ?>-->
  85.  
  86. <div class="Pro_des">
  87. <?php if ($_product->getShortDescription()):?>
  88. <div class="short-description">
  89. <hr>
  90. <br/>
  91. <!-- <h2><?php echo $this->__('Quick Overview') ?></h2> -->
  92. <div class="std"><?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?></div>
  93. </div>
  94. <?php endif;?>
  95. </div>
  96.  
  97.  
  98.  
  99. <!--
  100.  
  101. <?php if ($this->displayProductStockStatus()): ?>
  102. <?php if($_product->isSaleable()): ?>
  103. <p class="availability in-of-stock"><span><?php echo $this->__('In of stock') ?></span></p>
  104. <?php else : ?>
  105. <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
  106. <?php endif; ?>
  107. <?php endif; ?>
  108.  
  109. -->
  110.  
  111.  
  112. <hr class="hr">
  113.  
  114. <div class="check_delivery">
  115. <?php echo $this->getLayout()->createBlock('core/template')->setTemplate('checkdelivery/checkdelivery.phtml')->toHtml();?>
  116. </div>
  117.  
  118. <div class="Quick">
  119. <div class="Quick_1">
  120. <!--<?php if ($_product->getShortDescription()):?>
  121. <div class="short-description">
  122. <h2><?php echo $this->__('Quick Overview') ?></h2>
  123. <div class="std"><?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?></div>
  124. </div>
  125. <?php endif;?>-->
  126.  
  127. <div class="product-data">
  128. <?php echo $this->getChildHtml('alert_urls') ?>
  129. <?php echo $this->getChildHtml('product_type_data') ?>
  130. <?php echo $this->getChildHtml('extrahint') ?>
  131. <?php echo $this->getTierPriceHtml() ?>
  132.  
  133. </div>
  134. <?php if (!$this->hasOptions()):?>
  135. <div class="add-to-box">
  136. <?php if($_product->isSaleable()): ?>
  137. <?php echo $this->getChildHtml('addtocart') ?>
  138. <?php else:?>
  139. <?php echo $this->getChildHtml('addto') ?>
  140. <?php endif; ?>
  141.  
  142. <?php if ($_product->isAvailable()) {?>
  143.  
  144. <div><?php $buttonTitle = $this->__('Add to Cart'); ?>
  145. <button type="button" title="<?php echo $buttonTitle ?>" id="product-addtocart-button" class="button btn-cart" onclick="productAddToCartForm.submit(this)"><span><span><?php echo $buttonTitle ?></span></span></button>
  146. </div>
  147.  
  148.  
  149. <!-- buy now -->
  150.  
  151. <div ><button class="button buy-now" onclick="location.href ='{{config path="web/unsecure/base_url"}}/checkout/cart/add?product=1&qty=1'">
  152. <span><span>Buy Now</span></span></button>
  153. </div>
  154.  
  155.  
  156. <!-- buy now -->
  157.  
  158. <?php }?>
  159. </div>
  160. <?php echo $this->getChildHtml('extra_buttons') ?>
  161. <?php elseif (!$_product->isSaleable()): ?>
  162. <div class="add-to-box">
  163. <?php echo $this->getChildHtml('addto') ?>
  164. </div>
  165.  
  166.  
  167.  
  168.  
  169. <?php endif; ?>
  170. </div>
  171.  
  172. <div class="Quick_2">
  173.  
  174. <!-- Soled By -->
  175. <div class="soled_by">
  176. <?php
  177. $helper=Mage::helper('marketplace');
  178. $_product=Mage::registry('current_product');
  179. $productowner=Mage::getModel('marketplace/product')->isCustomerProduct($_product['entity_id']);
  180. if($productowner['userid']!=""){
  181. $captchenable = $percent = Mage::getStoreConfig('marketplace/marketplace_options/captcha');
  182. $rowsocial=Mage::getModel('marketplace/userprofile')->getPartnerProfileById($productowner['userid']);
  183. }
  184. ?>
  185. <script type="text/javascript">
  186. if (typeof jQuery == 'undefined'){
  187. document.write(unescape("%3Cscript src='//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js' type='text/javascript'%3E%3C/script%3E"));
  188. }
  189. </script>
  190.  
  191.  
  192.  
  193. <div class="soled-by-dealer">
  194. <!--<div class="block-title"><strong><span>
  195. <?php if($rowsocial['shoptitle']!='')
  196. echo $rowsocial['shoptitle'];
  197. else
  198. echo $rowsocial['profileurl']; ?>
  199. </span></strong>
  200. </div>-->
  201.  
  202. <h5> SOLD BY : </h5>
  203.  
  204. <span>
  205.  
  206.  
  207. <?php if($rowsocial['profileurl'] == "kidsdial2")
  208. {?>
  209.  
  210. <a href="<?php echo Mage::getUrl('marketplace/seller/collection').$rowsocial['profileurl'] ?>" title="<?php echo "Totaltoys"; ?>" id="siteconnect">
  211. <?php echo "Totaltoys"; ?></a><?php
  212.  
  213. }
  214.  
  215. else{?>
  216.  
  217. <a href="<?php echo Mage::getUrl('marketplace/seller/collection').$rowsocial['profileurl'] ?>" title="<?php echo $rowsocial['profileurl']; ?>" id="siteconnect">
  218. <?php echo $rowsocial['profileurl']; ?></a><?php
  219. }
  220.  
  221. ?>
  222. </span>
  223.  
  224.  
  225. </div>
  226.  
  227.  
  228. <div class="delivery_details">
  229.  
  230.  
  231. <div class="COD">
  232. <?php $attribute = $_product->getResource()->getAttribute('cod_available');
  233. $attribute_value = $attribute ->getFrontend()->getValue($_product);
  234. if ($attribute_value == "Yes")
  235. {?>
  236.  
  237. <h5> CASH ON DELIVERY </h5>
  238.  
  239. <div class="Delivery_hover_details">?<p class="killing" style="position:relative; left:-130px; top:10px;"><?php echo "Available";?></p><?php
  240. }
  241.  
  242. else
  243. {?><i class="fa fa-times"></i>
  244. <p><?php
  245. echo " Not Available";
  246. }
  247.  
  248. ?></p>
  249. <span class="coupontooltip">
  250. <div class="cod_content">
  251. <h5>How do I place a Cash on Delivery (COD) order?</h5>
  252. <p>All items that have the "Cash on Delivery Available" icon are valid for order by Cash on Delivery.</p>
  253. <p>Add the item(s) to your cart and proceed to checkout.When prompted to choose a payment option, select "Cash on Delivery". </p>
  254. <p>Once you place the order you will receive confirmation call from our customer support for validation with in 48 hours. Once verified and confirmed, your order will be processed for shipment in the time specified, from the date of confirmation. You will be required to make a cash-only payment to our courier partner at the time of delivery of your order to complete the payment.</p>
  255. <p>Terms & Conditions</p>
  256. <p>The maximum order value for COD is ₹5000.</p>
  257. <p>e-Gift Vouchers or Store Credit cannot be used for COD orders.</p>
  258. <p>Cash-only payment at the time of delivery.</p>
  259. </div>
  260. </span>
  261.  
  262. </div>
  263.  
  264.  
  265. </div>
  266.  
  267. </div>
  268.  
  269. <br/>
  270.  
  271.  
  272.  
  273. <div class="Delivery" style= "width: 47%; position: relative;left: 150px;top: -55px;">
  274. <h5> Delivered By </h5>
  275. <div class="Delivery_hover_details">?
  276. <span class="coupontooltip">
  277. <div class="delivery_content">
  278. <h5>What is the estimated delivery time?</h5>
  279. <p>Sellers generally procure and ship the items within the time specified on the product page. Business days exclude public holidays and Sundays.</p>
  280. <p>Estimated delivery time depends on the following factors:
  281. <li>Time of the order, usually orders made after 2:00pm can be shipped only on next workingday</li>
  282. <li>The Seller offering the product</li>
  283. <li>Product's availability with the Seller</li>
  284. <li>The destination to which you want the order shipped to and the Seller's location</li></p>
  285. </div>
  286. </span>
  287. </div>
  288. <ul class="fk-ul-disc">
  289. <li class= "abc" style="position:relative; top:-3px;">Usually Delivered in 3-5 business days.</li>
  290.  
  291. </ul>
  292. </div>
  293.  
  294.  
  295. <div class= "bottom3" style="position:relative; top:-75px;">
  296.  
  297. <!-- wholesale available -->
  298.  
  299. <?php
  300. //$product is your current product
  301. if($_product->getTierPrice()) {
  302. echo "
  303. <div class = 'quickphp'>
  304. <h5>Wholesale</h5>
  305. Available.<br>
  306. Usually Delivered in 10-15 business days.
  307. </div>
  308. ";
  309. }
  310. else{
  311. echo "
  312. <div class = 'quickphp'>
  313. <h5>Wholesale</h5>
  314. Not Available.<br>
  315. </div>
  316. ";
  317.  
  318. }
  319. ?>
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326. <div class="replace">
  327.  
  328. <span> <b>7 days</b> Replacement Guarantee</span>
  329. <div class="Delivery_hover_details">?
  330. <span class="coupontooltip">
  331.  
  332. <h5> How do I return an item purchased on Totaltoys.com</h5>
  333. <p>Conveniently, you can call us at 092-434-22233 and email us at contact@totaltoys.com with order number, invoice number and product name. If you've received an item in a 'Damaged', 'Defective' or 'Not as Described' state.</p>
  334.  
  335. <h5>Return & Replacement policy:</h5>
  336. <p>Returns or replacement request should be placed within 7 days from the date of delivery.</p>
  337. <p>As we receive your request, our concerned team will contact you to validate the compliant. The validation process may require submitting of product photos. Once the validation process is completed then further action will be taken.
  338. Once the product reaches to us/seller, the replacement will be proceed in 1-2 working days after physical inspection of the goods and shipment will be done simultaneously.</p>
  339. <p>If you've received an item in a 'Damaged', 'Defective' or 'Not as Described' state, all replacements/pickups will be done free of cost.</p>
  340. <p>If the packaging is tampered with or damaged, before accepting delivery of the goods, please refuse to take delivery of the package, and call us on 092-434-22233 or mail us at contact@totaltoys.com , mentioning your order reference number. We shall make our best efforts to ensure that a replacement delivery is made to you at the earliest.</p>
  341. <p>In the rare circumstances where a pickup cannot be done, you can ship the product through any courier. You will be reimbursed the shipping charges against the original receipt.</p>
  342. <p>Replacement is subjected to availability of stock. In case a replacement is not available, the amount will be refunded to your account from which the purchase was made. (Amount includes shipping and gift wrapping charges)</p>
  343.  
  344. <h5> Return Request is not Accepted If:</h5>
  345.  
  346. <li>Return request is made outside the specified time period</li>
  347.  
  348. <li>Missing of tags, labels, original packing, and invoice.</li>
  349.  
  350. <li>Misused or Mishandle of the product from customer end.</li>
  351.  
  352. <p>For all refunds we will refund the amount to same mode of payment as used during checkout. Refunds for cash on delivery will be made via online transfer of funds to the customers bank account.</p>
  353. <p>If the customer chooses to cancel the order before the product is shipped, he will be entitled to a 100% refund.
  354. Do I have to return the free gift when I return a product?</p>
  355.  
  356. <p>Yes. The free gift is included as part of the item order and needs to be returned along with the originally delivered product</p>
  357.  
  358. <p>Please contact us on contact@totaltoys.com or call us at 092-434-22233 for any doubts and concerns</p>
  359.  
  360.  
  361.  
  362. </span>
  363. </div>
  364.  
  365.  
  366. </div>
  367.  
  368.  
  369. <br/>
  370.  
  371. <?php if ($this->displayProductStockStatus()): ?>
  372. <?php if($_product->isSaleable()): ?>
  373. <p class="availability in-of-stock"><span><?php echo $this->__('Availability : <br> In Stock') ?></span></p>
  374. <?php else : ?>
  375. <p class="availability out-of-stock"><span><?php echo $this->__('Availability : <br> Out of stock') ?></span></p>
  376. <?php endif; ?>
  377. <?php endif; ?>
  378.  
  379.  
  380. </div>
  381.  
  382.  
  383.  
  384.  
  385. </div>
  386.  
  387. </div>
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394.  
  395.  
  396. <!--<?php if (!$this->hasOptions()):?>
  397. <div class="add-to-box">
  398. <?php if($_product->isSaleable()): ?>
  399. <?php echo $this->getChildHtml('addtocart') ?>
  400. <?php else:?>
  401. <?php echo $this->getChildHtml('addto') ?>
  402. <?php endif; ?>
  403. </div>
  404. <?php echo $this->getChildHtml('extra_buttons') ?>
  405. <?php elseif (!$_product->isSaleable()): ?>
  406. <div class="add-to-box">
  407. <?php echo $this->getChildHtml('addto') ?>
  408. </div>
  409.  
  410.  
  411.  
  412.  
  413. <?php endif; ?>-->
  414.  
  415.  
  416. <?php echo $this->getChildHtml('other');?>
  417. <?php echo $this->getChildHtml('short_des_after'); ?>
  418.  
  419. <?php if ($_product->isSaleable() && $this->hasOptions()):?>
  420. <?php echo $this->getChildChildHtml('container1', '', true, true) ?>
  421. <?php endif;?>
  422. <?php echo $this->getChildHtml('shippingreturns') ?>
  423.  
  424. </div>
  425. </div>
  426.  
  427.  
  428. <!--<span class="or_buy_now"> -- OR --</span>-->
  429.  
  430.  
  431.  
  432. <!--<button type="button" title="<?php echo $buttonTitle ?>" id="product-addtocart-button" class="button btn-cart" onclick="productAddToCartForm.submit(this)"><span><span><?php echo $buttonTitle ?></span></span></button>-->
  433. <!--<a href="<?= $this->getAddtoCartUrl($_product, array('qty' => $_price['price_qty'])) ?>"> Buy Now </a>-->
  434.  
  435. <div class="clearer"></div>
  436. <?php if ($_product->isSaleable() && $this->hasOptions()):?>
  437. <?php echo $this->getChildChildHtml('container2', '', true, true) ?>
  438. <?php endif;?>
  439. </form>
  440. </div>
  441. <!-- Add button share facebook -->
  442. <?php if ($setting->getImageProduct_ViewSocial()): ?>
  443. <div id="social-share" class="hide-lte0 hide-lte1 hide-lte2"></div>
  444. <script type="text/javascript">
  445. jQuery(document).ready(function($){
  446. jQuery('#social-share').dcSocialShare({
  447. buttons: 'facebook,plusone,twitter,pinterest',
  448. twitterId: 'designchemical',
  449. email: 'moc//niamod/liame',
  450. align: 'right',
  451. floater: false
  452. });
  453. });
  454. </script>
  455. <?php endif; ?>
  456. <script type="text/javascript">
  457. //<![CDATA[
  458. var productAddToCartForm = new VarienForm('product_addtocart_form');
  459. productAddToCartForm.submit = function(button, url) {
  460. if (this.validator.validate()) {
  461. var form = this.form;
  462. var oldUrl = form.action;
  463.  
  464. if (url) {
  465. form.action = url;
  466. }
  467. var e = null;
  468. try {
  469. this.form.submit();
  470. } catch (e) {
  471. }
  472. this.form.action = oldUrl;
  473. if (e) {
  474. throw e;
  475. }
  476.  
  477. if (button && button != 'undefined') {
  478. button.disabled = true;
  479. }
  480. }
  481. }.bind(productAddToCartForm);
  482.  
  483. productAddToCartForm.submitLight = function(button, url){
  484. if(this.validator) {
  485. var nv = Validation.methods;
  486. delete Validation.methods['required-entry'];
  487. delete Validation.methods['validate-one-required'];
  488. delete Validation.methods['validate-one-required-by-name'];
  489. // Remove custom datetime validators
  490. for (var methodName in Validation.methods) {
  491. if (methodName.match(/^validate-datetime-.*/i)) {
  492. delete Validation.methods[methodName];
  493. }
  494. }
  495.  
  496. if (this.validator.validate()) {
  497. if (url) {
  498. this.form.action = url;
  499. }
  500. this.form.submit();
  501. }
  502. Object.extend(Validation.methods, nv);
  503. }
  504. }.bind(productAddToCartForm);
  505. //]]>
  506. </script>
  507. </div>
  508.  
  509. <?php echo $this->getChildHtml('catalog.product.related'); ?>
  510.  
  511. <div class="product-collateral">
  512. <?php foreach ($this->getChildGroup('detailed_info', 'getChildHtml') as $alias => $html):?>
  513. <div class="box-collateral <?php echo "box-{$alias}"?>">
  514. <?php if ($title = $this->getChildData($alias, 'title')):?>
  515. <h2><?php echo $this->escapeHtml($title); ?></h2>
  516. <?php endif;?>
  517. <?php echo $html; ?>
  518. </div>
  519. <?php endforeach;?>
  520. <?php echo $this->getChildHtml('product_additional_data') ?>
  521. <?php echo $this->getChildHtml('product_additional_collateral') ?>
  522. </div>
  523. <?php echo $this->getChildHtml('review_list') ?>
  524. <?php echo $this->getChildHtml('upsell_products') ?>
  525. <?php if (Mage::helper('em0113settings')->getImageProduct_UseTabs()): ?>
  526. <script type="text/javascript">
  527. //<![CDATA[
  528. jQuery(window).ready(function() {
  529. setTimeout(function() {
  530. timeout = null;
  531. EM.tools.decorateProductCollateralTabs();
  532. }, 200);
  533. });
  534. //]]>
  535. </script>
  536.  
  537.  
  538. <?php endif ?>
  539. </div>
  540.  
  541.  
  542.  
  543.  
  544.  
  545.  
  546.  
  547.  
  548.  
  549.  
  550.  
  551. <style>
  552.  
  553. .add-to-box > div {
  554. clear: both;
  555. margin-bottom: 7px;
  556. }
  557. .Quick button.button span {
  558. float: left;
  559. text-align: center !important;
  560. width: 139px;
  561. }
  562.  
  563. <!-- buy now -->
  564.  
  565. .button.buy-now {
  566.  
  567. display:none;
  568. background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #f78828 0px, #dd771f 100%) repeat scroll 0 0 !important;
  569. padding: 3px;
  570. width: 184px;
  571.  
  572. }
  573.  
  574.  
  575. .catalog-product-view .buy-now button.button span {
  576. float: left;
  577. font-size: 19px;
  578. font-weight: normal !important;
  579. text-align: center;
  580. text-transform: uppercase;
  581. }
  582.  
  583. .catalog-product-view button.button span span {
  584. color: #fff;
  585. float: left;
  586. font-size: 16px;
  587. font-weight: normal !important;
  588. text-align: center;
  589. text-transform: capitalize;
  590.  
  591. <!-- buy now end -->
  592.  
  593.  
  594. .availability
  595.  
  596. {
  597.  
  598. color: black;
  599. padding: 0 0 5px;
  600. bottom: px;
  601. position: relative;
  602.  
  603.  
  604.  
  605.  
  606. top:-80px;
  607.  
  608. font-size: 13px;
  609. font-weight: normal;
  610. text-transform: uppercase;
  611. color: #000;
  612. }
  613.  
  614. .tier-prices .price { color : #000000; }
  615.  
  616.  
  617. <!-- wholessale -->
  618.  
  619. .quickphp {
  620.  
  621. position: relative;
  622. left: 0px;
  623. top : 85px;
  624. left:-130px;
  625. white-space:nowrap;
  626.  
  627. }
  628.  
  629.  
  630.  
  631. <!-- wholesale end -->
  632.  
  633. <!-- replacemet -->
  634.  
  635. .replace {
  636. clear: both;
  637. top: 60px;
  638. position: relative;
  639. padding-top: 0px;
  640. width: 100%;
  641. top:80px;
  642. }
  643.  
  644. .replace {margin: 0 auto;
  645. /*min-height: 285px;*/
  646. padding-top: 0px;
  647. width: 100%;}
  648. .Individual {
  649. margin: 0 auto;
  650. width: 1000px;
  651. }
  652.  
  653. <!-- replacemet end -->
  654.  
  655.  
  656. .bulk { position:relative; top :10px;}
  657.  
  658. .bulk_content > li {
  659. margin-left: 10px;
  660. top:10px;
  661. margin-top:10px;
  662.  
  663. .Quick h5 {
  664. font-size: 12px;
  665. font-weight: bold;
  666. text-transform: uppercase;
  667. }
  668.  
  669.  
  670. .product-view .product-img-box {
  671. float: left !important;
  672. width: 42% !important;
  673. }
  674.  
  675. .product-shop {
  676. float: left;
  677. width: 58%;
  678. }
  679.  
  680. .Quick_1 {
  681. float: left !important;
  682. width: 48%;
  683. padding: 0px;
  684. }
  685.  
  686. .Quick {
  687. border-top: 1px solid #ccc;
  688. width: 100% !important;
  689. }
  690.  
  691. .Quick_2 {
  692. border-left: 1px solid #ccc;
  693. float: left;
  694. padding: 5px;
  695. width: 48%;
  696. height:115px;
  697.  
  698. }
  699.  
  700. .Quick .COD
  701.  
  702. {
  703. float: left;
  704. padding-bottom: 10px;
  705. padding-top: 2px;
  706. width: 61%;
  707. }
  708.  
  709. .fk-ul-disc
  710. {
  711. position: relative;
  712. top: -22px;
  713. }
  714.  
  715. .Delivery_hover_details:hover .coupontooltip {
  716. display: block;
  717. }
  718. .Delivery_hover_details{
  719.  
  720. border: 1px solid #e5e5e5;
  721. border-radius: 2px;
  722. color: #666;
  723. display: inline-block;
  724. font-size: 11px;
  725. height: 12px;
  726. left: 145px;
  727. line-height: 12px;
  728. position: relative;
  729. text-align: center;
  730. text-decoration: none;
  731. top: -56px;
  732. width: 28px;
  733. }
  734.  
  735. .Delivery .Delivery_hover_details{
  736.  
  737. border: 1px solid #e5e5e5;
  738. border-radius: 2px;
  739. color: #666;
  740. display: inline-block;
  741. font-size: 11px;
  742. height: 12px;
  743. left: 120px;
  744. line-height: 12px;
  745. position: relative;
  746. text-align: center;
  747. text-decoration: none;
  748. top: -29px;
  749. width: 12px;
  750. }
  751.  
  752.  
  753. .Quick .Delivery{
  754. float: right;
  755. margin: 0 auto;
  756. padding-left: 0;
  757. padding-top: 10px;
  758. width: 55%;
  759. position:relative;
  760. left:60px;
  761. bottom:90px;}
  762.  
  763. .Quick h5
  764.  
  765. { font-size: 12 px; }
  766.  
  767.  
  768. .Quick .delivery_details { width: 50%; }
  769.  
  770. .delivery_details { width:50%;}
  771.  
  772. .Quick .COD {
  773. float: left;
  774. padding-bottom: 10px;
  775. padding-top: 2px;
  776. width: 50%;
  777. }
  778.  
  779. .Delivery_hover_details > p {
  780. clear: both;
  781. float: left;
  782. position: absolute;
  783. right: 91px;
  784. top: 21px;
  785. }
  786.  
  787. .Quick .COD {
  788. float: left;
  789. padding-bottom: 10px;
  790. padding-top: 2px;
  791. width: 61%;
  792. }
  793.  
  794. .Delivery_hover_details > abc {
  795. clear: both;
  796. float: left;
  797. position: absolute;
  798. right: 91px;
  799. top: 21px;
  800. }
  801.  
  802. .Delivery_hover_details
  803.  
  804. {
  805. clear: both;
  806. float: left;
  807. position: absolute;
  808. right: 91px;
  809. top: 21px;
  810. }
  811.  
  812. .abc { display: inline-block; }
  813.  
  814.  
  815. .Delivery { position:relative; width: 55%; }
  816.  
  817.  
  818.  
  819. .bottom3 { position:relative; top : -40px; }
  820.  
  821.  
  822. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement