Nous ne répondons seulement qu'aux sujets dont l'auteur a complété sa signature [Lire]



Vous avez des soucis avec votre Opencart v1.5.x, nous pouvons résoudre vos problèmes,
contactez le Bureau France !

par tel: 0 891 690 175 ou par
email

Mode de livraison prix non allignés

Soutien général pour les problèmes techniques avec OpenCart

Mode de livraison prix non allignés

Messagepar PaulDSB » 12 Aoû 2012, 19:48

Bonjour, voilà ça fait deux jours que j'essais de trifouiller un petit peut les fichiers, (je m'y connais légèrement en css et php mais pas plus que ça), j'ai réussi a résoudre plusieurs problèmes et a bien configurer mon site mais là je bloque !

Depuis ce matin je suis dessus, voilà mon problème:

Image

Je voudrais aligner le €, j'ai tout essayé, mais rien y fait !

J'utilise le theme Bree, mais je penses que j'ai pas modifier les bon fichiers, si quelqu'un pourrais m'aider!

Merci pour tout
TUBBY.FR - Vente d'accessoires pour téléphones portable (en construction)

eCommerce sous Opencart 1.5.1.1 Français, avec le thème Bree

Merci pour tout l'aide que vous apportez
PaulDSB
Utilisateur enregistré
Utilisateur enregistré
 
Messages: 7
Inscription: 10 Aoû 2012, 21:30

Re: Mode de livraison prix non allignés

Messagepar LeorLindel » 12 Aoû 2012, 19:59

Peux-tu mettre le fichier catalog/view/theme/bree/template/checkout/checkout.tpl.
Image
1 - A lire avant de poster un sujet
2 - Politique sur la signature.

Quand le sujet est résolu, pensez à ajouter la petite coche verte Image dans le titre initial en éditant votre premier message et non dans votre dernière réponse.
Merci


Toutes les extensions commerciales (templates ou modules payants) ne peuvent pas faire l'objet d'ouverture de sujet, prière de bien vouloir s'adresser au concepteur en cas de problème ou demande de renseignements.

Seul, on avance plus vite, à plusieurs on avance plus loin.
Avatar de l’utilisateur
LeorLindel
Administrateur
Administrateur
 
Messages: 4227
Inscription: 19 Fév 2010, 13:44
Localisation: Lutéce

Re: Mode de livraison prix non allignés

Messagepar PaulDSB » 12 Aoû 2012, 20:02

Code: Tout sélectionner
<?php echo $header; ?><?php echo $column_left; ?><?php echo $column_right; ?>
<div id="content"><?php echo $content_top; ?>
  <div class="breadcrumb">
    <?php foreach ($breadcrumbs as $breadcrumb) { ?>
    <?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a>
    <?php } ?>
  </div>
  <h1><?php echo $heading_title; ?></h1>
  <div class="checkout">
    <div id="checkout">
      <div class="checkout-heading"><?php echo $text_checkout_option; ?></div>
      <div class="checkout-content"></div>
    </div>
    <?php if (!$logged) { ?>
    <div id="payment-address">
      <div class="checkout-heading"><span><?php echo $text_checkout_account; ?></span></div>
      <div class="checkout-content"></div>
    </div>
    <?php } else { ?>
    <div id="payment-address">
      <div class="checkout-heading"><span><?php echo $text_checkout_payment_address; ?></span></div>
      <div class="checkout-content"></div>
    </div>
    <?php } ?>
    <?php if ($shipping_required) { ?>
    <div id="shipping-address">
      <div class="checkout-heading"><?php echo $text_checkout_shipping_address; ?></div>
      <div class="checkout-content"></div>
    </div>
    <div id="shipping-method">
      <div class="checkout-heading"><?php echo $text_checkout_shipping_method; ?></div>
      <div class="checkout-content"></div>
    </div>
    <?php } ?>
    <div id="payment-method">
      <div class="checkout-heading"><?php echo $text_checkout_payment_method; ?></div>
      <div class="checkout-content"></div>
    </div>
    <div id="confirm">
      <div class="checkout-heading"><?php echo $text_checkout_confirm; ?></div>
      <div class="checkout-content"></div>
    </div>
  </div>
  <?php echo $content_bottom; ?></div>
<script type="text/javascript"><!--
$('#checkout .checkout-content input[name=\'account\']').live('change', function() {
   if ($(this).attr('value') == 'register') {
      $('#payment-address .checkout-heading span').html('<?php echo $text_checkout_account; ?>');
   } else {
      $('#payment-address .checkout-heading span').html('<?php echo $text_checkout_payment_address; ?>');
   }
});

$('.checkout-heading a').live('click', function() {
   $('.checkout-content').slideUp('slow');
   
   $(this).parent().parent().find('.checkout-content').slideDown('slow');
});
<?php if (!$logged) { ?>
$(document).ready(function() {
   $.ajax({
      url: 'index.php?route=checkout/login',
      dataType: 'json',
      success: function(json) {
         if (json['redirect']) {
            location = json['redirect'];
         }
         
         if (json['output']) {      
            $('#checkout .checkout-content').html(json['output']);
            
            $('#checkout .checkout-content').slideDown('slow');
         }
      }
   });   
});      
<?php } else { ?>
$(document).ready(function() {
   $.ajax({
      url: 'index.php?route=checkout/address/payment',
      dataType: 'json',
      success: function(json) {
         if (json['redirect']) {
            location = json['redirect'];
         }
         
         if (json['output']) {
            $('#payment-address .checkout-content').html(json['output']);
            
            $('#payment-address .checkout-content').slideDown('slow');
         }
      }
   });   
});
<?php } ?>

// Checkout
$('#button-account').live('click', function() {
   $.ajax({
      url: 'index.php?route=checkout/' + $('input[name=\'account\']:checked').attr('value'),
      dataType: 'json',
      beforeSend: function() {
         $('#button-account').attr('disabled', true);
         $('#button-account').after('<span class="wait">&nbsp;<img src="catalog/view/theme/default/image/loading.gif" alt="" /></span>');
      },      
      complete: function() {
         $('#button-account').attr('disabled', false);
         $('.wait').remove();
      },         
      success: function(json) {
         $('.warning').remove();
         
         if (json['redirect']) {
            location = json['redirect'];
         }
         
         if (json['output']) {         
            $('#payment-address .checkout-content').html(json['output']);
            
            $('#checkout .checkout-content').slideUp('slow');
            
            $('#payment-address .checkout-content').slideDown('slow');
            
            $('.checkout-heading a').remove();
            
            $('#checkout .checkout-heading').append('<a><?php echo $text_modify; ?></a>');
         }
      }
   });
});

// Login
$('#button-login').live('click', function() {
   $.ajax({
      url: 'index.php?route=checkout/login',
      type: 'post',
      data: $('#checkout #login :input'),
      dataType: 'json',
      beforeSend: function() {
         $('#button-login').attr('disabled', true);
         $('#button-login').after('<span class="wait">&nbsp;<img src="catalog/view/theme/default/image/loading.gif" alt="" /></span>');
      },   
      complete: function() {
         $('#button-login').attr('disabled', false);
         $('.wait').remove();
      },            
      success: function(json) {
         $('.warning').remove();
         
         if (json['redirect']) {
            location = json['redirect'];
         }
                  
         if (json['error']) {
            $('#checkout .checkout-content').prepend('<div class="warning" style="display: none;">' + json['error']['warning'] + '</div>');
            
            $('.warning').fadeIn('slow');
         } else {                        
            $.ajax({
               url: 'index.php?route=checkout/address/payment',
               dataType: 'json',
               success: function(json) {
                  if (json['redirect']) {
                     location = json['redirect'];
                  }                  
                  
                  if (json['output']) {
                     $('#payment-address .checkout-content').html(json['output']);
                     
                     $('#checkout .checkout-content').slideUp('slow');
                     
                     $('#payment-address .checkout-content').slideDown('slow');
                     
                     $('#payment-address .checkout-heading span').html('<?php echo $text_checkout_payment_address; ?>');
                     
                     $('.checkout-heading a').remove();
                  }
               }
            });   
         }
      }
   });   
});

// Register
$('#button-register').live('click', function() {
   $.ajax({
      url: 'index.php?route=checkout/register',
      type: 'post',
      data: $('#payment-address input[type=\'text\'], #payment-address input[type=\'password\'], #payment-address input[type=\'checkbox\']:checked, #payment-address input[type=\'radio\']:checked, #payment-address select'),
      dataType: 'json',
      beforeSend: function() {
         $('#button-register').attr('disabled', true);
         $('#button-register').after('<span class="wait">&nbsp;<img src="catalog/view/theme/default/image/loading.gif" alt="" /></span>');
      },   
      complete: function() {
         $('#button-register').attr('disabled', false);
         $('.wait').remove();
      },         
      success: function(json) {
         $('.warning').remove();
         $('.error').remove();
                  
         if (json['redirect']) {
            location = json['redirect'];
         }
                  
         if (json['error']) {
            if (json['error']['warning']) {
               $('#payment-address .checkout-content').prepend('<div class="warning" style="display: none;">' + json['error']['warning'] + '</div>');
               
               $('.warning').fadeIn('slow');
            }
            
            if (json['error']['firstname']) {
               $('#payment-address input[name=\'firstname\'] + br').after('<span class="error">' + json['error']['firstname'] + '</span>');
            }
            
            if (json['error']['lastname']) {
               $('#payment-address input[name=\'lastname\'] + br').after('<span class="error">' + json['error']['lastname'] + '</span>');
            }   
            
            if (json['error']['email']) {
               $('#payment-address input[name=\'email\'] + br').after('<span class="error">' + json['error']['email'] + '</span>');
            }
            
            if (json['error']['telephone']) {
               $('#payment-address input[name=\'telephone\'] + br').after('<span class="error">' + json['error']['telephone'] + '</span>');
            }      
                              
            if (json['error']['address_1']) {
               $('#payment-address input[name=\'address_1\'] + br').after('<span class="error">' + json['error']['address_1'] + '</span>');
            }   
            
            if (json['error']['city']) {
               $('#payment-address input[name=\'city\'] + br').after('<span class="error">' + json['error']['city'] + '</span>');
            }   
            
            if (json['error']['postcode']) {
               $('#payment-address input[name=\'postcode\'] + br').after('<span class="error">' + json['error']['postcode'] + '</span>');
            }   
            
            if (json['error']['country']) {
               $('#payment-address select[name=\'country_id\'] + br').after('<span class="error">' + json['error']['country'] + '</span>');
            }   
            
            if (json['error']['zone']) {
               $('#payment-address select[name=\'zone_id\'] + br').after('<span class="error">' + json['error']['zone'] + '</span>');
            }
            
            if (json['error']['password']) {
               $('#payment-address input[name=\'password\'] + br').after('<span class="error">' + json['error']['password'] + '</span>');
            }   
            
            if (json['error']['confirm']) {
               $('#payment-address input[name=\'confirm\'] + br').after('<span class="error">' + json['error']['confirm'] + '</span>');
            }                                                                                                   
         } else {
            <?php if ($shipping_required) { ?>            
            var shipping_address = $('#payment-address input[name=\'shipping_address\']:checked').attr('value');
            
            if (shipping_address) {
               $.ajax({
                  url: 'index.php?route=checkout/shipping',
                  dataType: 'json',
                  success: function(json) {
                     if (json['redirect']) {
                        location = json['redirect'];
                     }
                                          
                     if (json['output']) {
                        $('#shipping-method .checkout-content').html(json['output']);
                        
                        $('#payment-address .checkout-content').slideUp('slow');
                        
                        $('#shipping-method .checkout-content').slideDown('slow');
                        
                        $('#checkout .checkout-heading a').remove();
                        $('#payment-address .checkout-heading a').remove();
                        $('#shipping-address .checkout-heading a').remove();
                        $('#shipping-method .checkout-heading a').remove();
                        $('#payment-method .checkout-heading a').remove();                                 
                        
                        $('#shipping-address .checkout-heading').append('<a><?php echo $text_modify; ?></a>');                           
                        $('#payment-address .checkout-heading').append('<a><?php echo $text_modify; ?></a>');   
   
                        $.ajax({
                           url: 'index.php?route=checkout/address/shipping',
                           dataType: 'json',
                           success: function(json) {
                              if (json['redirect']) {
                                 location = json['redirect'];
                              }                              
                              
                              if (json['output']) {
                                 $('#shipping-address .checkout-content').html(json['output']);
                              }
                           }
                        });   
                     }
                  }
               });   
            } else {
               $.ajax({
                  url: 'index.php?route=checkout/address/shipping',
                  dataType: 'json',
                  success: function(json) {
                     if (json['redirect']) {
                        location = json['redirect'];
                     }
                              
                     if (json['output']) {
                        $('#shipping-address .checkout-content').html(json['output']);
                        
                        $('#payment-address .checkout-content').slideUp('slow');
                        
                        $('#shipping-address .checkout-content').slideDown('slow');
                        
                        $('#checkout .checkout-heading a').remove();
                        $('#payment-address .checkout-heading a').remove();
                        $('#shipping-address .checkout-heading a').remove();
                        $('#shipping-method .checkout-heading a').remove();
                        $('#payment-method .checkout-heading a').remove();                     

                        $('#payment-address .checkout-heading').append('<a><?php echo $text_modify; ?></a>');   
                     }
                  }
               });         
            }
            <?php } else { ?>
            $.ajax({
               url: 'index.php?route=checkout/payment',
               dataType: 'json',
               success: function(json) {
                  if (json['redirect']) {
                     location = json['redirect'];
                  }   
                                 
                  if (json['output']) {
                     $('#payment-method .checkout-content').html(json['output']);
                     
                     $('#payment-address .checkout-content').slideUp('slow');
                     
                     $('#payment-method .checkout-content').slideDown('slow');
                     
                     $('#checkout .checkout-heading a').remove();
                     $('#payment-address .checkout-heading a').remove();
                     $('#payment-method .checkout-heading a').remove();                        
                     
                     $('#payment-address .checkout-heading').append('<a><?php echo $text_modify; ?></a>');   
                  }
               }
            });               
            <?php } ?>
            
            $.ajax({
               url: 'index.php?route=checkout/address/payment',
               dataType: 'json',
               success: function(json) {
                  if (json['redirect']) {
                     location = json['redirect'];
                  }
                           
                  if (json['output']) {
                     $('#payment-address .checkout-content').html(json['output']);
                     
                     $('#payment-address .checkout-heading span').html('<?php echo $text_checkout_payment_address; ?>');
                  }
               }
            });
         }   
      }
   });   
});

// Payment Address   
$('#payment-address #button-address').live('click', function() {
   $.ajax({
      url: 'index.php?route=checkout/address/payment',
      type: 'post',
      data: $('#payment-address input[type=\'text\'], #payment-address input[type=\'password\'], #payment-address input[type=\'checkbox\']:checked, #payment-address input[type=\'radio\']:checked, #payment-address select'),
      dataType: 'json',
      beforeSend: function() {
         $('#payment-address #button-address').attr('disabled', true);
         $('#payment-address #button-address').after('<span class="wait">&nbsp;<img src="catalog/view/theme/default/image/loading.gif" alt="" /></span>');
      },   
      complete: function() {
         $('#payment-address #button-address').attr('disabled', false);
         $('.wait').remove();
      },         
      success: function(json) {
         $('.error').remove();
         
         if (json['redirect']) {
            location = json['redirect'];
         }
         
         if (json['error']) {
            if (json['error']['firstname']) {
               $('#payment-address input[name=\'firstname\']').after('<span class="error">' + json['error']['firstname'] + '</span>');
            }
            
            if (json['error']['lastname']) {
               $('#payment-address input[name=\'lastname\']').after('<span class="error">' + json['error']['lastname'] + '</span>');
            }   
            
            if (json['error']['telephone']) {
               $('#payment-address input[name=\'telephone\']').after('<span class="error">' + json['error']['telephone'] + '</span>');
            }      
                              
            if (json['error']['address_1']) {
               $('#payment-address input[name=\'address_1\']').after('<span class="error">' + json['error']['address_1'] + '</span>');
            }   
            
            if (json['error']['city']) {
               $('#payment-address input[name=\'city\']').after('<span class="error">' + json['error']['city'] + '</span>');
            }   
            
            if (json['error']['postcode']) {
               $('#payment-address input[name=\'postcode\']').after('<span class="error">' + json['error']['postcode'] + '</span>');
            }   
            
            if (json['error']['country']) {
               $('#payment-address select[name=\'country_id\']').after('<span class="error">' + json['error']['country'] + '</span>');
            }   
            
            if (json['error']['zone']) {
               $('#payment-address select[name=\'zone_id\']').after('<span class="error">' + json['error']['zone'] + '</span>');
            }
         } else {
            <?php if ($shipping_required) { ?>
            $.ajax({
               url: 'index.php?route=checkout/address/shipping',
               dataType: 'json',
               success: function(json) {
                  if (json['redirect']) {
                     location = json['redirect'];
                  }
                           
                  if (json['output']) {
                     $('#shipping-address .checkout-content').html(json['output']);
                  
                     $('#payment-address .checkout-content').slideUp('slow');
                     
                     $('#shipping-address .checkout-content').slideDown('slow');
                     
                     $('#payment-address .checkout-heading a').remove();
                     $('#shipping-address .checkout-heading a').remove();
                     $('#shipping-method .checkout-heading a').remove();
                     $('#payment-method .checkout-heading a').remove();
                     
                     $('#payment-address .checkout-heading').append('<a><?php echo $text_modify; ?></a>');   
                  }
               }
            });
            <?php } else { ?>
            $.ajax({
               url: 'index.php?route=checkout/payment',
               dataType: 'json',
               success: function(json) {
                  if (json['redirect']) {
                     location = json['redirect'];
                  }   
                                 
                  if (json['output']) {
                     $('#payment-method .checkout-content').html(json['output']);
                  
                     $('#payment-address .checkout-content').slideUp('slow');
                     
                     $('#payment-method .checkout-content').slideDown('slow');
                     
                     $('#payment-address .checkout-heading a').remove();
                     $('#payment-method .checkout-heading a').remove();
                                          
                     $('#payment-address .checkout-heading').append('<a><?php echo $text_modify; ?></a>');   
                  }
               }
            });   
            <?php } ?>
            
            $.ajax({
               url: 'index.php?route=checkout/address/payment',
               dataType: 'json',
               success: function(json) {
                  if (json['redirect']) {
                     location = json['redirect'];
                  }
                           
                  if (json['output']) {
                     $('#payment-address .checkout-content').html(json['output']);
                  }
               }
            });               
         }    
      }
   });   
});

// Shipping Address         
$('#shipping-address #button-address').live('click', function() {
   $.ajax({
      url: 'index.php?route=checkout/address/shipping',
      type: 'post',
      data: $('#shipping-address input[type=\'text\'], #shipping-address input[type=\'password\'], #shipping-address input[type=\'checkbox\']:checked, #shipping-address input[type=\'radio\']:checked, #shipping-address select'),
      dataType: 'json',
      beforeSend: function() {
         $('#shipping-address #button-address').attr('disabled', true);
         $('#shipping-address #button-address').after('<span class="wait">&nbsp;<img src="catalog/view/theme/default/image/loading.gif" alt="" /></span>');
      },   
      complete: function() {
         $('#shipping-address #button-address').attr('disabled', false);
         $('.wait').remove();
      },         
      success: function(json) {
         $('.error').remove();
         
         if (json['redirect']) {
            location = json['redirect'];
         }
         
         if (json['error']) {
            if (json['error']['firstname']) {
               $('#shipping-address input[name=\'firstname\']').after('<span class="error">' + json['error']['firstname'] + '</span>');
            }
            
            if (json['error']['lastname']) {
               $('#shipping-address input[name=\'lastname\']').after('<span class="error">' + json['error']['lastname'] + '</span>');
            }   
            
            if (json['error']['email']) {
               $('#shipping-address input[name=\'email\']').after('<span class="error">' + json['error']['email'] + '</span>');
            }
            
            if (json['error']['telephone']) {
               $('#shipping-address input[name=\'telephone\']').after('<span class="error">' + json['error']['telephone'] + '</span>');
            }      
                              
            if (json['error']['address_1']) {
               $('#shipping-address input[name=\'address_1\']').after('<span class="error">' + json['error']['address_1'] + '</span>');
            }   
            
            if (json['error']['city']) {
               $('#shipping-address input[name=\'city\']').after('<span class="error">' + json['error']['city'] + '</span>');
            }   
            
            if (json['error']['postcode']) {
               $('#shipping-address input[name=\'postcode\']').after('<span class="error">' + json['error']['postcode'] + '</span>');
            }   
            
            if (json['error']['country']) {
               $('#shipping-address select[name=\'country_id\']').after('<span class="error">' + json['error']['country'] + '</span>');
            }   
            
            if (json['error']['zone']) {
               $('#shipping-address select[name=\'zone_id\']').after('<span class="error">' + json['error']['zone'] + '</span>');
            }
         } else {
            $.ajax({
               url: 'index.php?route=checkout/shipping',
               dataType: 'json',
               success: function(json) {
                  if (json['redirect']) {
                     location = json['redirect'];
                  }
                           
                  if (json['output']) {
                     $('#shipping-method .checkout-content').html(json['output']);
                     
                     $('#shipping-address .checkout-content').slideUp('slow');
                     
                     $('#shipping-method .checkout-content').slideDown('slow');
                     
                     $('#shipping-address .checkout-heading a').remove();
                     $('#shipping-method .checkout-heading a').remove();
                     $('#payment-method .checkout-heading a').remove();
                     
                     $('#shipping-address .checkout-heading').append('<a><?php echo $text_modify; ?></a>');                     
                  }
                  
                  $.ajax({
                     url: 'index.php?route=checkout/address/shipping',
                     dataType: 'json',
                     success: function(json) {
                        if (json['redirect']) {
                           location = json['redirect'];
                        }   
                                       
                        if (json['output']) {
                           $('#shipping-address .checkout-content').html(json['output']);
                        }
                     }
                  });                  
               }
            });   
         } 
      }
   });   
});

// Guest
$('#button-guest').live('click', function() {
   $.ajax({
      url: 'index.php?route=checkout/guest',
      type: 'post',
      data: $('#payment-address input[type=\'text\'], #payment-address input[type=\'checkbox\']:checked, #payment-address select'),
      dataType: 'json',
      beforeSend: function() {
         $('#button-guest').attr('disabled', true);
         $('#button-guest').after('<span class="wait">&nbsp;<img src="catalog/view/theme/default/image/loading.gif" alt="" /></span>');
      },   
      complete: function() {
         $('#button-guest').attr('disabled', false);
         $('.wait').remove();
      },         
      success: function(json) {
         $('.error').remove();
         
         if (json['redirect']) {
            location = json['redirect'];
         }
         
         if (json['error']) {
            if (json['error']['firstname']) {
               $('#payment-address input[name=\'firstname\'] + br').after('<span class="error">' + json['error']['firstname'] + '</span>');
            }
            
            if (json['error']['lastname']) {
               $('#payment-address input[name=\'lastname\'] + br').after('<span class="error">' + json['error']['lastname'] + '</span>');
            }   
            
            if (json['error']['email']) {
               $('#payment-address input[name=\'email\'] + br').after('<span class="error">' + json['error']['email'] + '</span>');
            }
            
            if (json['error']['telephone']) {
               $('#payment-address input[name=\'telephone\'] + br').after('<span class="error">' + json['error']['telephone'] + '</span>');
            }      
                              
            if (json['error']['address_1']) {
               $('#payment-address input[name=\'address_1\'] + br').after('<span class="error">' + json['error']['address_1'] + '</span>');
            }   
            
            if (json['error']['city']) {
               $('#payment-address input[name=\'city\'] + br').after('<span class="error">' + json['error']['city'] + '</span>');
            }   
            
            if (json['error']['postcode']) {
               $('#payment-address input[name=\'postcode\'] + br').after('<span class="error">' + json['error']['postcode'] + '</span>');
            }   
            
            if (json['error']['country']) {
               $('#payment-address select[name=\'country_id\'] + br').after('<span class="error">' + json['error']['country'] + '</span>');
            }   
            
            if (json['error']['zone']) {
               $('#payment-address select[name=\'zone_id\'] + br').after('<span class="error">' + json['error']['zone'] + '</span>');
            }
         } else {
            <?php if ($shipping_required) { ?>   
            var shipping_address = $('#payment-address input[name=\'shipping_address\']:checked').attr('value');
            
            if (shipping_address) {
               $.ajax({
                  url: 'index.php?route=checkout/shipping',
                  dataType: 'json',
                  success: function(json) {
                     if (json['redirect']) {
                        location = json['redirect'];
                     }
                              
                     if (json['output']) {
                        $('#shipping-method .checkout-content').html(json['output']);
                        
                        $('#payment-address .checkout-content').slideUp('slow');
                        
                        $('#shipping-method .checkout-content').slideDown('slow');
                        
                        $('#payment-address .checkout-heading a').remove();
                        $('#shipping-address .checkout-heading a').remove();
                        $('#shipping-method .checkout-heading a').remove();
                        $('#payment-method .checkout-heading a').remove();      
                                                
                        $('#payment-address .checkout-heading').append('<a><?php echo $text_modify; ?></a>');   
                        $('#shipping-address .checkout-heading').append('<a><?php echo $text_modify; ?></a>');                           
                     }
                     
                     $.ajax({
                        url: 'index.php?route=checkout/guest/shipping',
                        dataType: 'json',
                        success: function(json) {
                           if (json['redirect']) {
                              location = json['redirect'];
                           }
                                    
                           if (json['output']) {
                              $('#shipping-address .checkout-content').html(json['output']);
                           }
                        }
                     });
                  }
               });               
            } else {
               $.ajax({
                  url: 'index.php?route=checkout/guest/shipping',
                  dataType: 'json',
                  success: function(json) {
                     if (json['redirect']) {
                        location = json['redirect'];
                     }   
                                       
                     if (json['output']) {
                        $('#shipping-address .checkout-content').html(json['output']);
                        
                        $('#payment-address .checkout-content').slideUp('slow');
                        
                        $('#shipping-address .checkout-content').slideDown('slow');
                        
                        $('#payment-address .checkout-heading a').remove();
                        $('#shipping-address .checkout-heading a').remove();
                        $('#shipping-method .checkout-heading a').remove();
                        $('#payment-method .checkout-heading a').remove();
                        
                        $('#payment-address .checkout-heading').append('<a><?php echo $text_modify; ?></a>');   
                     }
                  }
               });
            }
            <?php } else { ?>            
            $.ajax({
               url: 'index.php?route=checkout/payment',
               dataType: 'json',
               success: function(json) {
                  if (json['redirect']) {
                     location = json['redirect'];
                  }      
                              
                  if (json['output']) {
                     $('#payment-method .checkout-content').html(json['output']);
                     
                     $('#payment-address .checkout-content').slideUp('slow');
                        
                     $('#payment-method .checkout-content').slideDown('slow');
                        
                     $('#payment-address .checkout-heading a').remove();
                     $('#payment-method .checkout-heading a').remove();
                                             
                     $('#payment-address .checkout-heading').append('<a><?php echo $text_modify; ?></a>');
                  }
               }
            });            
            <?php } ?>
         }   
      }
   });   
});

// Guest Shipping
$('#button-guest-shipping').live('click', function() {
   $.ajax({
      url: 'index.php?route=checkout/guest/shipping',
      type: 'post',
      data: $('#shipping-address input[type=\'text\'], #shipping-address select'),
      dataType: 'json',
      beforeSend: function() {
         $('#button-guest-shipping').attr('disabled', true);
         $('#button-guest-shipping').after('<span class="wait">&nbsp;<img src="catalog/view/theme/default/image/loading.gif" alt="" /></span>');
      },   
      complete: function() {
         $('#button-guest-shipping').attr('disabled', false);
         $('.wait').remove();
      },         
      success: function(json) {
         $('.error').remove();
         
         if (json['redirect']) {
            location = json['redirect'];
         }
         
         if (json['error']) {
            if (json['error']['firstname']) {
               $('#shipping-address input[name=\'firstname\']').after('<span class="error">' + json['error']['firstname'] + '</span>');
            }
            
            if (json['error']['lastname']) {
               $('#shipping-address input[name=\'lastname\']').after('<span class="error">' + json['error']['lastname'] + '</span>');
            }   
                              
            if (json['error']['address_1']) {
               $('#shipping-address input[name=\'address_1\']').after('<span class="error">' + json['error']['address_1'] + '</span>');
            }   
            
            if (json['error']['city']) {
               $('#shipping-address input[name=\'city\']').after('<span class="error">' + json['error']['city'] + '</span>');
            }   
            
            if (json['error']['postcode']) {
               $('#shipping-address input[name=\'postcode\']').after('<span class="error">' + json['error']['postcode'] + '</span>');
            }   
            
            if (json['error']['country']) {
               $('#shipping-address select[name=\'country_id\']').after('<span class="error">' + json['error']['country'] + '</span>');
            }   
            
            if (json['error']['zone']) {
               $('#shipping-address select[name=\'zone_id\']').after('<span class="error">' + json['error']['zone'] + '</span>');
            }
         } else {
            $.ajax({
               url: 'index.php?route=checkout/shipping',
               dataType: 'json',
               success: function(json) {
                  if (json['redirect']) {
                     location = json['redirect'];
                  }
                           
                  if (json['output']) {
                     $('#shipping-method .checkout-content').html(json['output']);
                     
                     $('#shipping-address .checkout-content').slideUp('slow');
                     
                     $('#shipping-method .checkout-content').slideDown('slow');
                     
                     $('#shipping-address .checkout-heading a').remove();
                     $('#shipping-method .checkout-heading a').remove();
                     $('#payment-method .checkout-heading a').remove();
                        
                     $('#shipping-address .checkout-heading').append('<a><?php echo $text_modify; ?></a>');
                  }
               }
            });            
         }   
      }
   });   
});

$('#button-shipping').live('click', function() {
   $.ajax({
      url: 'index.php?route=checkout/shipping',
      type: 'post',
      data: $('#shipping-method input[type=\'radio\']:checked, #shipping-method textarea'),
      dataType: 'json',
      beforeSend: function() {
         $('#button-shipping').attr('disabled', true);
         $('#button-shipping').after('<span class="wait">&nbsp;<img src="catalog/view/theme/default/image/loading.gif" alt="" /></span>');
      },   
      complete: function() {
         $('#button-shipping').attr('disabled', false);
         $('.wait').remove();
      },         
      success: function(json) {
         $('.warning').remove();
         
         if (json['redirect']) {
            location = json['redirect'];
         }
         
         if (json['error']) {
            if (json['error']['warning']) {
               $('#shipping-method .checkout-content').prepend('<div class="warning" style="display: none;">' + json['error']['warning'] + '</div>');
               
               $('.warning').fadeIn('slow');
            }         
         } else {
            $.ajax({
               url: 'index.php?route=checkout/payment',
               dataType: 'json',
               success: function(json) {
                  if (json['redirect']) {
                     location = json['redirect'];
                  }
                                    
                  if (json['output']) {
                     $('#payment-method .checkout-content').html(json['output']);
                     
                     $('#shipping-method .checkout-content').slideUp('slow');
                     
                     $('#payment-method .checkout-content').slideDown('slow');

                     $('#shipping-method .checkout-heading a').remove();
                     $('#payment-method .checkout-heading a').remove();
                     
                     $('#shipping-method .checkout-heading').append('<a><?php echo $text_modify; ?></a>');   
                  }
               },
               error: function(xhr, ajaxOptions, thrownError) {
                  alert(thrownError);
               }
            });               
         }
      }
   });   
});

$('#button-payment').live('click', function() {
   $.ajax({
      url: 'index.php?route=checkout/payment',
      type: 'post',
      data: $('#payment-method input[type=\'radio\']:checked, #payment-method input[type=\'checkbox\']:checked, #payment-method textarea'),
      dataType: 'json',
      beforeSend: function() {
         $('#button-payment').attr('disabled', true);
         $('#button-payment').after('<span class="wait">&nbsp;<img src="catalog/view/theme/default/image/loading.gif" alt="" /></span>');
      },   
      complete: function() {
         $('#button-payment').attr('disabled', false);
         $('.wait').remove();
      },         
      success: function(json) {
         $('.warning').remove();
         
         if (json['redirect']) {
            location = json['redirect'];
         }
         
         if (json['error']) {
            if (json['error']['warning']) {
               $('#payment-method .checkout-content').prepend('<div class="warning" style="display: none;">' + json['error']['warning'] + '</div>');
               
               $('.warning').fadeIn('slow');
            }         
         } else {
            $.ajax({
               url: 'index.php?route=checkout/confirm',
               dataType: 'json',
               success: function(json) {
                  if (json['redirect']) {
                     location = json['redirect'];
                  }   
               
                  if (json['output']) {
                     $('#confirm .checkout-content').html(json['output']);
                     
                     $('#payment-method .checkout-content').slideUp('slow');
                     
                     $('#confirm .checkout-content').slideDown('slow');
                     
                     $('#payment-method .checkout-heading a').remove();
                     
                     $('#payment-method .checkout-heading').append('<a><?php echo $text_modify; ?></a>');   
                  }
               },
               error: function(xhr, ajaxOptions, thrownError) {
                  alert(thrownError);
               }
            });               
         }
      }
   });   
});
//--></script>
<?php echo $footer; ?>
TUBBY.FR - Vente d'accessoires pour téléphones portable (en construction)

eCommerce sous Opencart 1.5.1.1 Français, avec le thème Bree

Merci pour tout l'aide que vous apportez
PaulDSB
Utilisateur enregistré
Utilisateur enregistré
 
Messages: 7
Inscription: 10 Aoû 2012, 21:30

Re: Mode de livraison prix non allignés

Messagepar LeorLindel » 12 Aoû 2012, 20:14

Cela ne vient pas de ce fichier, cela doit venir du fichier stylesheet.css.
Image
1 - A lire avant de poster un sujet
2 - Politique sur la signature.

Quand le sujet est résolu, pensez à ajouter la petite coche verte Image dans le titre initial en éditant votre premier message et non dans votre dernière réponse.
Merci


Toutes les extensions commerciales (templates ou modules payants) ne peuvent pas faire l'objet d'ouverture de sujet, prière de bien vouloir s'adresser au concepteur en cas de problème ou demande de renseignements.

Seul, on avance plus vite, à plusieurs on avance plus loin.
Avatar de l’utilisateur
LeorLindel
Administrateur
Administrateur
 
Messages: 4227
Inscription: 19 Fév 2010, 13:44
Localisation: Lutéce

Re: Mode de livraison prix non allignés

Messagepar PaulDSB » 12 Aoû 2012, 20:26

J'ai tout essayé de changer dedans, impossible de trouver!

J'espères qu'on trouvera la solution:

Code: Tout sélectionner
html {
   overflow: -moz-scrollbars-vertical;
   margin: 0;
   padding: 0;
}
body {
   background: #fff url(images/background_short.png) repeat-x;
   color: #5a5a5a;
   font-family: Calibri, Helvetica, sans-serif;
   margin: 0px;
   padding: 0px;
   position: relative;
}

.homeBody {
   background: #fff url(images/background.png) repeat-x;
}

body, td, th, input, textarea, select, a {
   font-size: 14px;
}
h1, .welcome {
   color: #636E75;
   font: Verdana;
   margin-top: 0px;
   margin-bottom: 20px;
   font-size: 32px;
   font-weight: normal;
   text-shadow: 0 0 1px rgba(0, 0, 0, .01);
}

h1 {
   color: #525252;
   text-shadow: 0 0 1px #fff;
   font-size: 17px;
   font-weight: bold;
}

h2 {
   color: #616161;
   font-size: 16px;
   margin-top: 0px;
   margin-bottom: 5px;
   font-weight: bold;
}
p {
   margin-top: 0px;
   margin-bottom: 20px;
}

a, a:visited, a b {
   color: #2f67b7;
   text-decoration: none;
   cursor: pointer;
}
a:hover {
   color: #3670c3;
}
a img {
   border: none;
}

ul {
   list-style: url(images/bullet.png);
   padding-left: 20px;
   margin: 10px;
}

ul li {
   color: #515151;
   margin-bottom: 5px;
}

ul li a, ul li a:visited, ul li a b {
   color: #7d7d7d;
}

.content, p {
   color: #515151;
}

.button {
   background: #d6d6d6 url(images/gray_button_bg.png) -40px 0 no-repeat;
   padding: 6px 9px  4px 9px;
   color: #646464 !important;
   text-decoration: none;
   border: 1px solid #c3c3c3;
   font-size: 14px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   text-shadow: 0 1px 0 white;
   display: inline-block;
   margin-top: 10px;
}

form {
   padding: 0;
   margin: 0;
   display: inline;
}
input[type='text'], input[type='password'], textarea {
   background: white;
   -webkit-box-shadow: 0 1px 4px #e8e8e8 inset;
   -moz-box-shadow: 0 1px 4px #e8e8e8 inset;
   -o-box-shadow: 0 1px 4px #e8e8e8 inset;
   box-shadow: 0 1px 4px #e8e8e8 inset;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   border: none;
   max-height: 250px;
   max-width: 700px;
   outline: none;
   padding: 10px;
   margin-bottom: 10px;
   color: #666;
   font-family: Calibri, Helvetica, sans-serif;
   border: 1px solid #d3d3d3;
}

input[type='text']:focus, input[type='password']:focus, textarea:focus {
   -webkit-box-shadow: 0 1px 4px #d0e8ff inset;
   -moz-box-shadow: 0 1px 4px #d0e8ff inset;
   -o-box-shadow: 0 1px 4px #d0e8ff inset;
   box-shadow: 0 1px 4px #d0e8ff inset;
   border: 1px solid #c5dbef;
}

input[type="submit"], input[type="button"] {
   cursor: pointer;
}

select {
   background: #F8F8F8;
   border: 1px solid #CCCCCC;
   padding: 2px;
}

 label {
   color: #999999;
   cursor: text;
}

.inputField label {
   position: absolute;
   top: 12px;
   left: 10px;
   z-index: 1;
}

b {
   color: #646464 !important;
   font-weight: normal;
}

table {
   width: 100%;
   background: white;
   border: 1px solid #d9d9d9;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   border-collapse: separate;
   border-spacing: 0px;
   margin-bottom: 15px;
   color: #777;
}

thead {
   background: #f2f2f2 url(images/thead.png) repeat-x;
   line-height: 33px;
   color: #535353;
   text-shadow: 0 1px 0 white;
}

td {
   padding: 0 10px 0 10px;
   text-align: left;
   vertical-align: middle;
}

tbody tr:hover {
   background: #f7f7f7;
}

tbody tr {
   background: url(images/tr.png) repeat-x bottom;
   border-bottom: 1px solid #efefef;
}

tbody tr:last-child {
   border-bottom: none;
}

tr {
   display: block;
   padding: 0px;
}

td:last-child {
   border-right: none !important;
}

tbody td {
   padding: 10px;
}

.compare-info td {
   width: 20%;
   vertical-align: top;
   border-right: 1px solid #DDD;
}

.required {
   color: orange;
}

.warning, .error, .success, .attention {
   padding: 10px;
   border: 1px solid #ffb6b6;
   margin: 10px 0;
   color: #6a2020;
   display: block;
}

.warning, .attention, .error{
   background: #ffefef;
   border: 1px solid #ffb6b6;
   color: #6a2020;

}

.success{
   background: #EAF7D9;
   border: 1px solid #BBDF8D;
   color: #3f6014;

}
.warning img {
   float: right;
   cursor: pointer;
   margin-top: 4px;
}

.banner {
   margin: 8px 0 5px 0;
}

.pagination {
   text-align: center;
   color: gray;
   margin-top: 10px;
   background: #f0f0f0;
   line-height: 34px;
   margin: 0px -10px -10px -10px;
}

.grayArea {
   margin-bottom: 10px;
   border: 1px solid #f2f2f2;
   padding: 10px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   background: #fafafa;
}

/* layout */
#container {
   width: 1000px;
   margin-left: auto;
   margin-right: auto;
   text-align: left;
}

#column-left {
   width: 200px;
   margin-top: 20px;
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
   margin-right: 10px;
}

#column-left .box {
   margin-bottom: 13px;
}

#content {
   margin-top: 20px;
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
   
   background: #f7f7f7 url(images/box_title.png) repeat-x;
   border: 1px solid #ebebeb;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   padding: 10px;
   margin-bottom: 20px;
   width: 764px;
}

#content h1 {
   margin-top: 3px;
}

.home #column-left {
   width: 200px;
   margin-top: 50px;
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
   margin-right: 10px;
   margin-bottom: 20px;
}

.home #content {
   margin-top: 50px;
   width: 780px;
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
   
   background: none;
   border: none;
   -webkit-border-radius: none;
   padding: 0;
}

.grayButton, .cart-module div .cart-heading {
   background: #d6d6d6 url(images/gray_button_bg.png) -40px 0 no-repeat;
   padding: 6px 9px  4px 9px;
   color: #646464;
   text-decoration: none;
   border: 1px solid #c3c3c3;
   font-size: 14px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   text-shadow: 0 1px 0 white;
   display: inline-block;
   cursor: pointer;
   margin-right: 5px;
}

.grayButton:hover {
   background: #e4e4e4 url(images/gray_button_bg_hover.png) -40px 0 no-repeat !important;
}

.grayButton:active {
   background: #cbcbcb url(images/gray_button_bg_active.png) -40px 0 no-repeat !important;
}

.grayButton a {
   color: #646464;
   text-decoration: none;
}

.breadcrumb {
   display: none;
}

.information {
   padding: 10px;
   color: #455367;
   border: 1px solid #abd1ff;
   background: #e2ebf8;
   margin-bottom: 10px;
}

.information p {
   margin: 0;
}

.largeText {
   font-size: 30px;
   color: gray;
}

.contentBox {
   margin-top: 20px;
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
   background: #f7f7f7 url(images/box_title.png) repeat-x;
   border: 1px solid #ebebeb;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   padding: 10px;
   width: 764px;
}

.contentContainer {
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
   width: 764px;
}

/* header */
#header {
   height: 70px;
   margin-bottom: 4px;
   position: relative;
   z-index: 99;
}
#header #logo {
   position: absolute;
   top: 15px;
   left: 0;
}

#header #welcome {
   position: absolute;
   top: 47px;
   right: 0px;
   z-index: 5;
   width: 298px;
   text-align: right;
   color: #999999;
}

#navigation {
   position: absolute;
   right: -20px;
}

#navigation a {
   background: url(images/tab.png) no-repeat;
   background-position: 0 100px;
   display: inline-block;
   color: #fff;
   text-shadow: 0 1px 2px black;
   text-decoration: none;
   margin: 3px 0 0 -3px;
   padding: 30px 20px 25px 20px;
}

#navIndicator {
   background: url(images/nav_indicator.png);
   width: 26px;
   height: 9px;
   position: absolute;
   top: -10px;
   left: 20px;
}

#navigation a:active {
   color: #cdcdcd;
}

#tools {
   height: 35px;
   width: 100%;
   position: relative;
   z-index: 2;
}

#tools form {
   float: left;
   margin-right: 5px;
}

#tools #leftTools {
   position: absolute;
   left: 0;
}

/*Language dropdown*/
#currency {
   width: 56px;
   position: relative;
   padding-top: 31px;
   overflow: hidden;
}

#currency a {
   display: inline-block;
   text-decoration: none;
   color: #d3ddee;
}

.currencyInactive {
   padding: 6px 22px 5px 10px;
   width: 24px;
   background: #1b2e4a;
}

#currencyActive {
   position: absolute;
   top: 4px;
   left: 0;
   min-width: 56px;
}

#currencyActive span {
   background: url(images/dropdown_bg.png) top right;
   padding: 6px 22px 5px 10px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   display: block;
}

/*Language dropdown*/
#language {
   position: relative;
   width: 48px;
   overflow: hidden;
   padding-top: 31px;
}

#language img {
   display: inline-block;
   cursor: pointer;
}

#languageActive {
   position: absolute;
   top: 4px;
   background: url(images/dropdown_bg.png) top right;
   padding: 8px 22px 8px 10px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   display: block;
}

.languageInactive {
   padding: 6px 22px 5px 10px;
   background: #1b2e4a;
}

/* Search */

#search {
   position: relative;
   z-index: 3;
   float: right;
   width: 190px;
}

#searchButton {
   background: url(images/dark_button_bg.png) repeat-x;
   width: 28px;
   height: 28px;
   margin-top: 4px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   position: absolute;
   right: 0;
}

#search input {
   margin-top: 5px;
   background: url(images/text_area.png) repeat-x;
   border: none;
   font-size: 13px;
   height: 18px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   position: absolute;
   left: 0;
   display: none;
   padding: 3px;
   width: 150px;
}

#searchButton span {
   background: url(images/search.png) no-repeat;
   width: 17px;
   height: 17px;
   position: absolute;
   display: block;
   top: 5px;
   left: 5px;
}

#searchTrigger, .button-search {
   cursor: pointer;
}

/* Cart */

#cart {
   position: relative;
   float: right;
   margin-top: 8px;
   margin-left: 10px;
}

.cartTitle {
   background: url(images/cart_icon.png) no-repeat;
   padding: 1px 0px 6px 30px;
   text-decoration: none;
   color: #d3ddee;
   right: 0;
}

.mini-cart-total {
   width: 130px;
   margin: 10px 0 10px 125px;
}

.miniLeftTotal {
   float: left;
   color: #c7d3e6;
   margin-bottom: 5px;
}

.miniRightTotal {
   float: right;
   font-weight: bold;
}

.miniRightTotal b {
   font-weight: bold;
}

.miniCartPrices {
   zoom: 1;
   display: block;
}

.miniCartPrices:after {
   content: ".";
   visibility: hidden;
   clear: both;
   display: block;
   height: 0;
}

.prodNumber {
   background: url(images/cart_product_count.png) no-repeat;
   padding: 0px 6px 0px 9px;
   color: white;
   text-shadow: 0 0px 2px #241002;
   margin-right: 5px;
   display: inline-block;
   *display: inline;
   font-size: 12px;
   font-weight: bold;
   -webkit-border-top-right-radius: 2px;
   -webkit-border-bottom-right-radius: 2px;
   -moz-border-radius-topright: 2px;
   -moz-border-radius-bottomright: 2px;
   border-top-right-radius: 2px;
   border-bottom-right-radius: 2px;
   margin-top: 3px;
}

.prodPrice {
   display: inline-block;
   position: relative;
   top: 1px;
   font-weight: bold;
   *display: inline;
}

.prodPrice {
   color: #D3DDEE;
}

.prodPrice:hover {
   color: #fff !important;
}

.cartContent {
   background: rgba(30, 49, 80, 0.95);
   position: absolute;
   right: 0;
   top: 10px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   display: none;
   z-index: 100;
}

.cartContent small {
   color: #e2e3e4;
}

.cartContent b {
   color: white !important;
}

.cartContent .image img {
   width: 20px;
}

.cartProduct {
   background: url(images/darken_40.png);
   width: 245px;
   padding: 12px 7px 7px 7px;
   margin: 5px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
}

.cartProduct .image, .cartProduct .name, .cartProduct .quantity, .cartProduct .total, .cartProduct .remove {
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
}

.cartProduct .name {
   width: 100px;
}

.cartProduct .name a {
   text-decoration: none;
   color: #d3ddee;
}

.cartProduct .total {
   width: 70px;
   text-align: right;
   margin-right: 5px;
   color: #d3ddee;
}

.cartProduct .image {
   margin-right: 6px;
}

.cartProduct .quantity {
   color: #697fa1;
}

.cartProduct .remove img {
   cursor: pointer;
}

.cartProduct .remove img:hover {
   opacity: 0.7;
}

.cartContent .miniCartCheckout a {
   color: #d3ddee;
   background: url(images/dark_button_bg.png);
   padding: 5px 15px 5px 15px;
   display: inline-block !important;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   text-decoration: none;
   margin-bottom: 10px;
   margin-left: 5px;
}

.cartContent .miniCartCheckout {
   text-align: right;
   margin-left: 60px;
   width: 200px;
}

/*Featured products */

#flashPosition {
   position: relative;
   top: 30px;
}

.featuredProducts {
   width: 1100px;
}

.featuredProducts h2 {
   font-size: 29px;
   color: white;
   text-shadow: 0 1px 2px #16253c;
   margin: 0;
}

.featuredProducts span {
   font-size: 15px;
   color: #c8d6ed;
   text-shadow: 0 1px 2px #1d3050;
}

.featuredProducts .featuredProd {
   padding: 20px;
   width: 165px;
   height: 80px;
   background: white;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   text-align: center;
   box-shadow: 0 0 5px rgba(0,0,0, 0.3);
   position: relative;
}

.featuredProducts .featuredProdContainer {
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
   margin: 25px 55px 0 0;
   position: relative;
   height: 120px;
}

.featuredProducts .featuredProd .priceRegularBG {
   background: url(images/featured_price.png);
   width: 72px;
   height: 63px;
   position: absolute;
   bottom: 0;
   right: 0;
   text-align: center;
}

.featuredProducts .featuredProd .priceRegular {
   display: block;
   color: white;
   font-weight: bold;
   z-index: 1;
   text-shadow: none;
}

.bigPrice {
   font-size: 20px !important;
   margin-top: 30px;
   margin-left: 14px;
}

.smallPrice {
   margin-top: 33px;
   margin-left: 14px;
}

.featuredProducts .featuredProd .priceDiscountBG {
   background: url(images/featured_price_discount.png);
   width: 72px;
   height: 63px;
   position: absolute;
   bottom: 0;
   right: 0;
}

.featuredProducts .featuredProd .priceDiscount {
   color: #8f3131;
   font-weight: bold;
   position: absolute;
   bottom: 27px;
   right: 5px;
   z-index: 1;
   text-decoration: line-through;
   text-shadow: none;
   font-size: 13px;
}

.featuredProducts .featuredProd .priceDiscountRegular {
   color: white;
   font-weight: bold;
   position: absolute;
   bottom: 3px;
   right: 5px;
   z-index: 1;
   text-shadow: 0 0 1px #b44545;
   font-size: 15px;
}

.featuredShadow {
   background: url(images/featured_shadow.png);
   width: 271px;
   height: 19px;
   position: absolute;
   bottom: -7px;
   left: -30px;
   z-index: -1;
}

.featuredProducts .box-product {
   height: 160px;
   overflow: hidden;
   width: 1000px;
   padding-left: 30px;
   padding-right: 30px;
   margin-left: -30px;
   position: relative;
}

.slider {
   width: 10000px;
}

.featuredSelector {
   background: url(images/featured_selector_bg.jpg);
   width: 13px;
   height: 13px;
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
   cursor: pointer;
   position: relative;
}

.featuredSelector .active {
   background: url(images/featured_ball.png);
   width:0;
   height: 0;
   display: block;
   position: absolute;
   -webkit-background-size: cover;
}

#featuredController {
   margin-top: 24px;
   text-align: center;
   position: relative;
   left: -50px;
}

/* Boxes */

#content .box {
   background: #f7f7f7 url(images/box_title.png) repeat-x;
   border: 1px solid #ebebeb;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   padding: 10px;
}

.box-heading {
   color: #525252;
   text-shadow: 0 0 1px #fff;
   font-size: 17px;
}

#content .bbox {
   background: #f7f7f7 url(images/box_title.png) repeat-x;
   border: 1px solid #ebebeb;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   padding: 14px 10px 10px 10px;
   position: relative;
}

.bbox-heading {
   color: #525252;
   text-shadow: 0 0 1px #fff;
   font-size: 17px;
   margin-bottom: 30px;
   padding-left: 10px;
   font-weight: bold;
}

#column-left .box {
   background: #f7f7f7 url(images/box_title.png) repeat-x;
   border: 1px solid #ebebeb;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   padding: 14px 10px 10px 10px;
}

#column-left  .box-heading {
   color: #525252;
   text-shadow: 0 0 1px #fff;
   font-size: 17px;
   margin-bottom: 21px;
   padding-left: 10px;
   font-weight: bold;
}

.product {
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
   background: white;
   margin: 4px;
   width: 170px;
   height: 260px;
   padding: 1px;
   text-align: center;
   border: 1px solid #ebebeb;
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   -o-border-radius: 5px;
   border-radius: 5px;
   position: relative;
   font-size: 14px;
}

.product .name {
   background: url(images/prod_title.png);
   padding: 11px 0 11px 0;
   text-shadow: 0 1px 0 white;
}

.product .name a {
   color: #494f58;
   text-decoration: none;
   font-size: 16px;
}

.product img {
   margin-top: 10px;
}


.product .priceRegularBG {
   background: url(images/price.png);
   width: 72px;
   height: 63px;
   position: absolute;
   bottom: 0;
   right: 0;
   text-align: center;
}

.product .priceRegular {
   display: block;
   color: white;
   font-weight: bold;
   z-index: 1;
   text-shadow: none;
}

.bigPrice {
   font-size: 18px !important;
   margin-top: 30px;
   margin-left: 14px;
}

.smallPrice {
   margin-top: 33px;
   margin-left: 14px;
}

.product .priceDiscountBG {
   background: url(images/featured_price_discount.png);
   width: 72px;
   height: 63px;
   position: absolute;
   bottom: 0;
   right: 0;
}

.product .priceDiscount {
   color: #8f3131;
   font-weight: bold;
   position: absolute;
   bottom: 25px;
   right: 5px;
   z-index: 1;
   text-decoration: line-through;
   text-shadow: none;
   font-size: 13px;
}

.product .priceDiscountRegular {
   color: white;
   font-weight: bold;
   position: absolute;
   bottom: 2px;
   right: 3px;
   z-index: 1;
   text-shadow: 0 0 1px #b44545;
   font-size: 15px;
}

.product .cart {
   position: absolute;
   bottom: 20px;
   left: 10px;
}

.product .cart input {
   background: url(images/product_cart.png) no-repeat;
   color: #594941;
   border: none;
   font-size: 10px;
   padding: 0 0 0 20px;
   cursor: pointer;
}

.breeView {
   background: url(images/eye.png) 0 2px no-repeat;
   padding: 0px 0 10px 27px;
   font-weight: normal;
   font-size: 16px;
   position: absolute;
   right: 10px;
   cursor: pointer;
   margin-right: 3px;
}

/* Category menu */

.mainCat {
   display: block;
   position: relative;
   margin-bottom: 0 !important;
}

.mainCat a {
   background: url(images/cat_bg.png) repeat-x;
   padding: 12px 0 13px 10px;
   list-style: none;
   margin-left: -10px;
   width: 188px;
   z-index: 2;
   position: relative;
   color: #777777;
   text-shadow: 0 1px 0 white;
   text-decoration: none;
   display: block;
}

.box-category ul {
   margin: 0;
   padding: 0;
   list-style-type: none !important;
   list-style-image: none !important;
}

.box-category {
   margin-top: -10px;
   margin-bottom: 10px;
}

.subCat {
   list-style: none;
   overflow: hidden;
   z-index: 1;
   position: relative;
   display: block;
   background: #efefef;
   margin-left: -10px !Important;
   padding-left: 10px !important;
   width: 188px;
   -webkit-box-shadow: 0 1px 2px #e0e0e0 inset;
   -moz-box-shadow: 0 1px 2px #e0e0e0 inset;
   -o-box-shadow: 0 1px 2px #e0e0e0 inset;
   box-shadow: 0 1px 2px #e0e0e0 inset;
}

.subCat a {
   background: none;
}

.subCat .active {
   color: #2f67b7;
}

.expandCat {
   background: url(images/expand_categories_bg.png);
   width: 19px;
   height: 20px;
   position: absolute;
   right: 0px;
   top: 10px;
   z-index: 3;
   cursor: pointer;
   overflow: hidden;
}

.expandCat:hover {
   background: url(images/expand_categories_bg_hover.png);
}

.expandCat .plus {
   background: url(images/plus.png);
   width: 11px;
   height: 11px;
   margin: 4px 0 0 4px;
}

.expandCat .minus {
   background: url(images/minus.png);
   width: 11px;
   height: 11px;
   margin: 4px 0 0 4px;
}

/* Footer */

#footer {
   padding: 5px 10px 0px 10px;
   background: #1a1a1a url(images/black_bar.png) repeat-x top;
   overflow-y: hidden;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
}

#footerContainer {
   width: 1000px;
   margin: -10px auto 0 auto;
   padding: 10px 10px 0 10px;
   -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
   -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
   -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
   box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

#footer .column {
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
   padding: 20px 10px 10px 10px;
   width: 155px;
   margin-right: 10px;
   border-right: 1px solid rgba(50, 50, 50, 0.5);
   -webkit-box-shadow: -1px 0 0 rgba(0, 0, 0, 0.3) inset;
   -moz-box-shadow: -1px 0 0 rgba(0, 0, 0, 0.3) inset;
   -o-box-shadow: -1px 0 0 rgba(0, 0, 0, 0.3) inset;
   box-shadow: -1px 0 0 rgba(0, 0, 0, 0.3) inset;
   margin-top: -10px;
   height: 220px;
}

#footer h3 {
   color: #dedede;
   margin: 0 0 20px 0;
   padding:0;
   font-size: 17px;
   text-shadow: 0 -1px 0 black;
}

#footer ul {
   list-style-type: none !important;
   list-style-image: none !important;
   padding: 0;
   margin: 0;
}

#footer li  {
   margin-bottom: 10px;
   padding: 5px 0 5px 15px;
   margin-left: -10px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   -webkit-transition: background 0.2s linear;
}

#footer li:hover {
   background: rgba(13, 13, 13, 0.5);
}

#footer li a {
   color: #a9a9a9;
   text-decoration: none;
}

#footer .map {
   padding: 5px;
   background: rgba(0,0,0, 0.5);
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
}

#mapColumn {
   width: 396px !important;
   border: none !important;
   -webkit-box-shadow: none !important;
   -moz-box-shadow: none !important;
   -o-box-shadow: none !important;
   box-shadow: none !important;
}

#mapColumn p {
   color: #c5c5c5;
   margin: 3px;
   padding-left: 10px;
}

#mapColumn p img {
   position: relative;
   left: -5px;
}

/* Product page */
.productPage h1 {
   font-size: 21px;
   color: #515151;
   text-shadow: 0 1px 0 white;
   margin: -3px 0 1px 0;
   float: left
}

.productPage .goBack {
   background: url(images/gray_button_bg.png) no-repeat;
   padding: 6px 13px 4px 14px;
   color: #646464;
   text-decoration: none;
   text-indent: -50px;
   border: 1px solid #c3c3c3;
   font-size: 14px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   margin-right: 15px;
   margin-top: -3px;
   overflow: hidden;
   float: left;
}

.plusButtons {
   background: url(images/plus_icon.png) no-repeat left;
   padding: 5px 0 5px 25px;
   display: block;
   width: 100px;
}

#extraButtons {
   margin: 25px 0;
}

#breeTabs {
   background: white;
   width: 784px;
   position: relative;
   z-index: 200;
   margin-top: 20px;
   margin-left: -10px;
   margin-bottom: 10px;
   border-bottom: 1px solid #e2e3e4;
}

#tabsTitle {
   background: url(images/gray_title_bg.png);
   padding: 15px;
}

#tabsTitle span {
   cursor: pointer;
   padding: 0 20px;
}

#tabsTitle .active {
   font-weight: bold;
   background: white;
   padding: 10px 20px 15px 20px;
   -webkit-border-top-left-radius: 3px;
   -webkit-border-top-right-radius: 3px;
   -moz-border-radius-topleft: 3px;
   -moz-border-radius-topright: 3px;
   border-top-left-radius: 3px;
   border-top-right-radius: 3px;
   -webkit-box-shadow: 0 1px 2px rgba(0,0,0, .2) inset;
   -moz-box-shadow: 0 1px 2px rgba(0,0,0, .2) inset;
   -o-box-shadow: 0 1px 2px rgba(0,0,0, .2) inset;
   box-shadow: 0 1px 2px rgba(0,0,0, .2) inset;
}

#tabContent {
   padding: 20px;
   color: #6b6b6b;
}

#productReview {
   display: none;
}

.contentHeading {
   zoom: 1;
}

.contentHeading:after {
   content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.productPage .goBack:hover {
   background: url(images/gray_button_bg_hover.png) no-repeat;
}

.productPage .goBack:active {
   background: url(images/gray_button_bg_active.png) no-repeat;
}

.product-info {
   margin-top: 40px;
   position: relative;
}

.productPage .option {
   margin-bottom: 10px;
   border: 1px solid #f2f2f2;
   padding: 10px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   background: #fafafa;
   width: 400px;
}

.productPage .minimum {
   width: 400px;
}

.productPage .tags {
   width: 745px;
   color: gray;
}

.productPage .tags b {
   margin-right: 10px;
}

.productPage .option b {
   margin-bottom: 15px;
   font-size: 16px;
   display: inline-block;
}

.productPage .left, .productPage .right {
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
}

.productPage .left {
   width: 300px;
   position: relative;
   z-index: 2;
   margin-right: 40px;
}

.productPage .right {
   width: 300px;
   position: relative;
}

.productPage .description span {
   font-size: 16px;
}

.productPage .description {
   color: #464646;
   font-size: 15px;
   line-height: 23px;
}

.inStock {
   background: url(images/tick.png) 0 3px    no-repeat;
   padding: 0px 0 2px 16px;
   color: #478e2b;
   font-weight: bold;
   margin-left: 5px;
}

.product-info a {
   color: #646464;
   text-decoration: none;
}

#priceContainer {
   background: url(images/product_price_bg.png);
   width: 74px;
   height: 78px;
   position: absolute;
   right: 30px;
   top: -20px;
}


/*Product page*/

.productPage {
   background: #f7f7f7 url(images/box_title.png) repeat-x;
   border: 1px solid #ebebeb;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   padding: 14px 10px 10px 10px;
   margin-bottom: 20px;
   width: 764px;
}

.productPage #productRating {
   margin-left: 50px;
}

.productDetails .priceRegularBG {
   background: url(images/product_price_bg.png);
   width: 74px;
   height: 78px;
   position: absolute;
   top: 0;
   right: 20px;
   text-align: center;
}

.productDetails .priceRegular {
   display: block;
   color: white;
   font-weight: bold;
   z-index: 1;
   text-shadow: none;
}

.productDetails .bigPrice {
   font-size: 20px !important;
   margin-top: 20px;
   margin-left: -8px;
}

.productDetails .smallPrice {
   margin-top: 25px;
   margin-left: -10px;
}

.productDetails .priceDiscountBG .bigPrice {
   margin-left: 0px !important;
}

.productDetails .priceDiscountBG .smallPrice {
   margin-left: -0px;
}

.productDetails .priceDiscountBG {
   background: url(images/product_price_discount_bg.png);
   width: 74px;
   height: 78px;
   position: absolute;
   top: 20px;
   right: 15px;
   text-align: center;
}

.productDetails .priceDiscount {
   color: #8f3131;
   font-weight: bold;
   position: relative;
   top: 13px;
   right: 6px;
   z-index: 1;
   text-decoration: line-through;
   text-shadow: none;
   font-size: 13px;
   display: block;
}

.productDetails .priceDiscountRegular {
   color: white;
   font-weight: bold;
   position: relative;
   top: -7px;
   right: 6px;
   z-index: 1;
   text-shadow: 0 0 1px #b44545;
   font-size: 15px;
   display: block;
}

.productPage .description {
   width: 370px;
}

.productPage .description div {
   margin-bottom: 5px;
}

.productPage #button-cart {
   background: #d67711 url(images/add_to_cart.png) no-repeat left top;
   padding: 0 15px 0 35px;
   line-height: 42px;
   height: 39px;
   display: inline-block;
   text-shadow: none;
   border: 1px solid #db832a;
   color: white !important;
   text-transform: uppercase;
   font-weight: bold;
   font-size: 12px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   cursor: pointer;
   width: 170px;
   vertical-align: top;
   margin-top: -2px;
}

.productPage #button-cart:hover {
   background: url(images/add_to_cart_hover.png) no-repeat left top;
}

.productPage #quantity {
   background: #ececec;
   -webkit-box-shadow: 0 1px 3px #d1d1d1 inset;
   -moz-box-shadow: 0 1px 3px #d1d1d1 inset;
   -o-box-shadow: 0 1px 3px #d1d1d1 inset;
   box-shadow: 0 1px 3px #d1d1d1 inset;
   padding: 10px 10px 10px 10px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   position: relative;
   top: -2px;
   height: 18px;
}

.productPage .cart p {
   color: #989898;
   text-shadow: 0 1px 0px white;
   margin-bottom: 5px;
}

.productPage .grayButton {
   background: #d6d6d6 url(images/gray_button_bg.png) -40px 0 no-repeat;
   padding: 6px 9px  4px 9px;
   color: #646464;
   text-decoration: none;
   border: 1px solid #c3c3c3;
   font-size: 14px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   text-shadow: 0 1px 0 white;
}

.productPage #titleButtons {
   float: right;
   margin-top: -5px;
}

.productPage #titleButtons .grayButton {
   margin-left: 7px;
}

#productReview h2{
   margin-bottom: 15px;
   color: #525252;
   text-shadow: 0 1px 0 white;
}

#productReview b {
   color: #525252;
   text-shadow: 0 1px 0 white;
}

#productReview #writeReviewBox {
   width: 220px;
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
}

#reviewContainer {
   padding-right: 30px;
   width: 480px;
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
}

#productReview input, #productReview textarea {
   max-height: 250px;
   max-width: 196px;
   width: 200px;
}

.inputField {
   position: relative;
}

#reviewContainer .content, #content .content {
   background: white;
   border: 1px solid #e1e1df;
   margin-bottom: 10px;
   padding: 10px;
   position: relative;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
}

#reviewContainer .content b {
   color: #696969;
   font-size: 18px;   
}

#reviewContainer .content .reviewDate {
   position: absolute;
   right: 10px;
   top: 10px;
   color: #bababa;
}

#reviewContainer .content img {
   -webkit-transform: scale(0.7);
   -webkit-transform-origin: 0 13px;
   opacity: 0.5;
   position: relative;
   top: 3px;
   left: 10px;
}

#reviewContainer .content p {
   color: #585858;
}

#productReview [name="captcha"] {
   margin-bottom: 5px;
}

#productReview textarea {
margin-bottom: 10px;
}

.star {
   background: url(images/gray_star.png);
   width: 20px;
   height: 19px;
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
   cursor: pointer;
}

.hideElements {
   cursor: default;
}

.activeStar {
   background: url(images/blue_star.png);
}

.reviewRating {
   margin-bottom: 15px;
}

.reviewRating input {
   display: none;
}

.reviewRating span {
   display: block;
   margin-bottom: 5px;
   color: #6f6f6f;
}

#button-review {
   padding: 10px;
}

.captchaArea {
   position: relative;
   text-align: center;
   width: 215px;
   background: white;
   border: 1px solid #b5d1ff;
   -webkit-box-shadow: 0 0 5px #ccdfe7;
   -moz-box-shadow: 0 0 5px #ccdfe7;
   -o-box-shadow: 0 0 5px #ccdfe7;
   box-shadow: 0 0 5px #ccdfe7;
   margin-bottom: 15px;
   margin-top: 3px;
}

#captchaStyle {
   -webkit-box-shadow: 1px 1px white inset, -1px -1px white inset;
   -mo-box-shadow: 1px 1px white inset, -1px -1px white inset;
   -o-box-shadow: 1px 1px white inset, -1px -1px white inset;
   box-shadow: 1px 1px white inset, -1px -1px white inset;
   width: 150px;
   height: 35px;
   position: absolute;
   left: 33px;
   z-index:1;
}

/* Related products */

#productPageContainer {
   margin-top: 20px;
   width: 764px;
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
}

.relatedProducts {
   position: relative;
   overflow: hidden;
}

.relatedProducts h2 {
   margin-bottom: 20px;
   color: #525252;
}

.relatedProducts .relatedProduct {
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
   background: white;
   margin: 5px;
   width: 134px;
   height: 110px;
   padding: 1px;
   text-align: center;
   border: 1px solid #ebebeb;
   -webkit-border-radius: 5px;
   position: relative;
   padding: 20px;
}


.relatedProducts .priceRegularBG {
   position: absolute;
   top: 5px;
   right: 5px;
   text-align: center;
}

.relatedProducts .priceRegular {
   display: block;
   color: white;
   font-weight: bold;
   z-index: 1;
   text-shadow: none;
}

.relatedProducts .priceDiscountBG {
   background: url(images/featured_price_discount.png);
   width: 72px;
   height: 63px;
   position: absolute;
   bottom: 0;
   right: 0;
}

.relatedProducts .priceDiscount {
   color: #8f3131;
   font-weight: bold;
   position: absolute;
   bottom: 25px;
   right: 5px;
   z-index: 1;
   text-decoration: line-through;
   text-shadow: none;
   font-size: 13px;
}

.relatedProducts .priceDiscountRegular {
   color: white;
   font-weight: bold;
   position: absolute;
   bottom: 7px;
   right: 5px;
   z-index: 1;
   text-shadow: 0 0 1px #b44545;
   font-size: 15px;
}

.toggleRelatedView {
   width: 60px !important;
   height: 17px !important;
   display: none;
   text-align: center;
   overflow: hidden;
   cursor: pointer;
   position: absolute;
   top: 10px;
   right: 10px;
}

#showAllRelated {
   margin-bottom: 20px;
}

#reviewContainer .pagination {
   color: #525252;
   font-size: 13px;
   opacity: 0.4;
   text-align: center;
   margin: 0;
}

/* Category page */

.categories {
   background-image: none !important;
}

.categoryTitle {
   background: url(images/box_title.png) repeat-x;
   padding: 5px;
   width: 775px;
   height: 37px;
   margin-left: -10px;
   margin-top: -10px;
   zoom: 1;
}

.categoryTitle:after {
   content: ".";
   visibility: hidden;
   height: 0;
   clear: both;
}

.categories .categoryImage, .categories h1 {
   float: left;
}

.categories h1 {
   padding-top: 4px;
}

.categories .categoryImage {
   margin-right: 6px;
   border: 1px solid #d1d1d1;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
}

.categories .categoryName {
   margin: 0;
}

.categories .compareProduct {
   float: right;
   margin-top: 3px;
}

.categories .display {
   float: right;
   margin-left: 10px;
   margin-top: 3px;
}

.categories .subTitle {
   background: #f2f2f2;
   width: 766px;
   margin: 0 0 0 -11px;
   padding: 13px 10px 13px 10px;
   height: 20px;
}

.categories  .subTitle p {
   float: left;
   padding: 0;
   margin: 0 0 0 45px;
}

.categories  .subTitle .show, .categories  .subTitle .sort {
   display: inline-block;
   float: right;
   margin-top: -5px;
   margin-left: 15px;
}

.categories .product-list .categoryProduct {
   border-bottom: 1px solid white;
   -webkit-box-shadow: 0 -1px 0 #e8e8e8 inset;
   -moz-box-shadow: 0 -1px 0 #e8e8e8 inset;
   -o-box-shadow: 0 -1px 0 #e8e8e8 inset;
   box-shadow: 0 -1px 0 #e8e8e8 inset;
   width: 766px;
   margin: 0 0 0 -11px;
   padding: 20px 10px 13px 10px;
   position: relative;
   min-height: 140px;
}

.categories .product-list .categoryProduct .image {
   width: 130px;
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
}

.categories .product-list .categoryProduct .productNameDesc {
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
   width: 450px;
}

.categories .categoryProduct .name a {
   color: #2d2d2d;
   font-size: 17px;
   font-weight: bold;
}

.categories .categoryProduct .name {
   margin-bottom: 10px;
}

.categories .categoryProduct .description {
   color: #737373;
}


/* Categories list view */
.categories .product-list .categoryProduct .priceTax {
   color: #b6b6b6;
   position: absolute;
   bottom: 10px;
   left: 10px;
   opacity: 0.5;
}

.categories .product-list .categoryProduct .priceRegularBG {
   background: url(images/product_price_bg.png);
   width: 74px;
   height: 78px;
   position: absolute;
   top: 20px;
   right: 20px;
   text-align: center;
}

.categories .product-list .categoryProduct .priceRegular {
   display: block;
   color: white;
   font-weight: bold;
   z-index: 1;
   text-shadow: none;
}

.categories .product-list .categoryProduct .bigPrice {
   font-size: 20px !important;
   margin-top: 20px;
   margin-left: -8px;
}

.categories .product-list .categoryProduct .smallPrice {
   margin-top: 25px;
   margin-left: -10px;
}

.categories .product-list .categoryProduct .priceDiscountBG {
   background: url(images/product_price_discount_bg.png);
   width: 74px;
   height: 78px;
   position: absolute;
   top: 20px;
   right: 20px;
}

.categories .product-list .categoryProduct .priceDiscount {
   color: #8f3131;
   font-weight: bold;
   position: absolute;
   top: 10px;
   right: 20px;
   z-index: 1;
   text-decoration: line-through;
   text-shadow: none;
   font-size: 13px;
}

.categories .product-list .categoryProduct .priceDiscountRegular {
   color: white;
   font-weight: bold;
   position: absolute;
   top: 5px;
   right: 20px;
   z-index: 1;
   text-shadow: 0 0 1px #b44545;
   font-size: 15px;
}

.categories .product-list .categoryProduct .cart {
   position: absolute;
   top: 120px;
   right: 20px;
   display: none;
}

.categories .product-list .categoryProduct .cart input {
   background: url(images/product_cart.png) no-repeat;
   color: #594941;
   border: none;
   font-size: 13px;
   padding: 0 0 0 20px;
   cursor: pointer;
}

/* Categories grid view */

.categories .product-grid .categoryProduct {
   display: inline-block;
   vertical-align: top;
   zoom: 1;
    *display: inline;
   background: white;
   margin: 20px 13px 4px 13px;
   width: 221px;
   height: 260px;
   padding: 60px 1px 1px 1px;
   text-align: center;
   border: 1px solid #ebebeb;
   -webkit-border-radius: 5px;
   position: relative;
}

.categories .product-grid .categoryProduct .name {
   position: absolute;
   top: 1px;
   text-align: center;
   width: 221px;
   background: url(images/prod_title.png);
   padding: 11px 0 11px 0;
   text-shadow: 0 1px 0 white;
}

.categories .product-grid .categoryProduct .description {
   padding: 0 10px 0 10px;
   text-align: left;
}

.categories .product-grid .categoryProduct .cart {
   position: absolute;
   bottom: 20px;
   left: 10px;
}

.categories .product-grid .categoryProduct .cart input {
   background: url(images/product_cart.png) no-repeat;
   color: #594941;
   border: none;
   font-size: 13px;
   padding: 0 0 0 20px;
   cursor: pointer;
}

.categories .product-grid .categoryProduct .image {
   margin-bottom: 5px;
}

.categories .product-grid .categoryProduct  .priceTax {
   margin-bottom: 10px;
   display: block;
   color: #aaaaaa;
   opacity: 0;
}


.categories .product-grid .categoryProduct .priceRegularBG {
   background: url(images/price.png);
   width: 72px;
   height: 63px;
   position: absolute;
   bottom: 0;
   right: 0;
   text-align: center;
}

.categories .product-grid .categoryProduct .priceRegular {
   display: block;
   color: white;
   font-weight: bold;
   z-index: 1;
   text-shadow: none;
}

.categories .product-grid .categoryProduct .priceDiscountBG {
   background: url(images/featured_price_discount.png);
   width: 72px;
   height: 63px;
   position: absolute;
   bottom: 0;
   right: 0;
}

.categories .product-grid .categoryProduct .priceDiscount {
   color: #8f3131;
   font-weight: bold;
   position: absolute;
   bottom: 25px;
   right: 5px;
   z-index: 1;
   text-decoration: line-through;
   text-shadow: none;
   font-size: 13px;
}

.categories .product-grid .categoryProduct .priceDiscountRegular {
   color: white;
   font-weight: bold;
   position: absolute;
   bottom: 7px;
   right: 5px;
   z-index: 1;
   text-shadow: 0 0 1px #b44545;
   font-size: 15px;
}

#displayList, #displayGrid {
   cursor: pointer;
   position: relative;
   z-index: 1;
}

#displayList {
   padding: 4px 20px 4px 10px;
   color: white;
   text-shadow: 0 1px 0 black;
}

#displayGrid {
   padding: 4px 10px 4px 20px;
}

.categories .display {
   position: relative;
}

#displayIndicator {
   background: url(images/dark_button.png);
   width: 60px;
   height: 29px;
   position: absolute;
   left: -1px;
   top: -1px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
}

/* Shopping cart */

.shoppingCart {
   color: #515151;
}

.shoppingCart tbody td {
   padding-top: 0 !important;
   padding-bottom: 0 !important;
}

table .image {
   width: 50px;
}

table .name {
   width: 200px;
}

table .model {
   width: 90px;
}

table .quantity {
   width: 80px;
}

table .quantity input {
   margin-top: 25px;
}

table .price {
   width: 90px;
}

table .stock {
   width: 60px;
}

table .action {
   padding-left: 50px;
}

table .action #removeIcon {
   position: relative;
   top: 3px;
   left: 3px;
}

table .total {
   width: 80px;
}

table .removeProd {
   width: 0px;
}

#removeIcon img {
   -webkit-transition: -webkit-transform 0.4s ease;
}

#removeIcon img:hover {
   -webkit-transform: rotate(180deg);
}

#refreshIcon {
   -webkit-transition: -webkit-transform 0.4s ease;
 }

#refreshIcon:hover {
   -webkit-transform: rotate(360deg);
}

.shoppingCart .textPrice {
   float: left;
}

.shoppingCart .pricePrice {
   float: right;
}

.prices {
   margin-bottom: 5px;
   zoom: 1;
}

.prices:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.prices:last-child {
   font-size: 20px;
   font-weight: bold;
}

.prices:last-child .pricePrice {
   color: #275baf;
}

.grayButtons, .checkoutBox {
   float: right;
}

.cart-module {
   width: 415px;
}

.continueButton {
   position: absolute;
   bottom: 0;
   left: 0;
}

.grayButtons {
   width: 590px;
   min-height: 120px;
   position: relative;
}

.checkoutBox {
   background: white;
   border: 1px solid #d9d9d9;
   padding: 10px 10px 10px 10px;
   vertical-align: bottom;
   width: 140px;
}

.checkoutButton {
   background: url(images/add_to_cart.png) no-repeat left top;
   padding: 9px 25px 7px 45px;
   text-shadow: none;
   border: 1px solid #db832a;
   color: white !important;
   text-transform: uppercase;
   font-weight: bold;
   font-size: 14px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   display: block;
   margin-top: 10px;
   width: 70px;
}

.checkoutButton:hover {
   background: url(images/add_to_cart_hover.png) no-repeat left top;
}

.shoppingCart .inputField {
   display: inline-block;
}

.shoppingCartOption {
   margin-top: 10px;
   margin-bottom: 35px;
   display: none;
}

.shoppingCart #voucher [type="text"] {
   width: 200px;
}

.shoppingCart #shipping {
   background: white;
   border: 1px solid lightGray;
   padding: 10px;
   width: 395px;
}

.shoppingCart #shipping td, .shoppingCart #shipping tr, .shoppingCart #shipping table {
   background: white;
   border: none;
}

.shoppingCart #shipping select {
   width: 223px;
}

.shoppingCart #shipping input {
   width: 200px;
}

.shoppingCart .tableLabels {
   width: 100px;
}

.price s {
   color: darkRed;
   font-size: 13px;
}

.price b {
   font-weight: bold;
}

/* Checkout */

.checkout {
   padding-top: 5px;
}

.cart-heading {
   margin: 5px 0;
}

.cart-content {
   background: white;
   padding: 10px;
   border: 1px solid gray 6d6d6d;
   display: none;
   float: right;
}

.checkout .left, .checkout .right {
   display: inline-block;
   width: 310px;
   margin-right: 30px;
   vertical-align: top;
   margin-top: 20px;
}

.checkout .left h2, .checkout .right h2 {
   margin-bottom: 15px;
}

.checkout .right {
   border-left: 1px solid #ebebeb;
   padding-left: 30px;
}

.checkoutPage label {
   position: relative;
   top: 0;
   left: 0;
}

.checkoutPage .checkoutStep {
   background: #f7f7f7 url(images/tr.png) repeat-x top;
   margin-top: -1px;
   border: 1px solid lightGray;
   padding: 15px 15px 7px 15px;
   color: #505050;
}

.checkoutPage .checkoutStep .checkout-heading {
   margin-bottom: 8px;
}

.checkoutPage .checkoutStep .checkout-heading a {
   float: right;
   background: #d6d6d6 url(images/gray_button_bg.png) -40px 0 no-repeat;
   padding: 6px 9px  4px 9px;
   color: #646464;
   text-decoration: none;
   border: 1px solid #c3c3c3;
   font-size: 14px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
   text-shadow: 0 1px 0 white;
   display: inline-block;
   cursor: pointer;
   margin-top: -6px;
   margin-right: -6px;
}

.checkoutAdressLeft {
   width: 130px;
}

.checkoutPage .checkoutStep td input {
   margin-top: 10px;
}

/*Product compare*/

.compare-info tbody tr td {
   width: 230px !important;
   padding: none !important;
}

.compare-info tbody tr td .price-old {
   color: red;
   text-decoration: line-through;
}

/* Login page */

.login-content .left, .login-content .right {
   display: inline-block;
   *display: inline;
   vertical-align: top;
   zoom: 1;
   width: 355px;
   margin-top: 10px;
   vertical-align: top;
}

.login-content .left {
   margin-right: 5px;
}

/* Voucher page */

.voucherPage tbody td {
   width: 250px;
}

.voucherPage .right [type="submit"] {
   float: right;
}

/* Specials page */

.specials .categoryTitle {
   height: 35px;
   margin-top: -10px;
}


.specials .categoryTitle h1 {
   margin-top: 6px;
   margin-left: 10px;
}

.specials .subTitle {
   height: 20px;
}

/* Bree view */

#breeView {
   width: 100%;
   height: 100%;
   background: rgba(0,0,0, 0.97);
   *background: black;
   position: absolute;
   top: 0;
   left: 0;
   z-index: 1000;
   -webkit-user-select: none;
   -moz-user-select: none;
   -o-user-select: none;
   user-select: none;
   display: none;
   overflow-x: hidden;
}

#breeViewContainer {
   width: 90%;
   margin: 0 auto;
}

#breeView .breeProd {
   width: 200px;
   height: 200px;
   margin: 4%;
   width: 200px;
   height: 200px;
   position: relative;
   display: inline-block;
   *display: inline;
   zoom: 1;
   vertical-align: top;
   text-align: center;
}

#breeView .image img {
   position: relative;
   top: 0;
   left: 0;
   width: 200px;
}

.breeProd .name {
   background: #191919;
   display: inline-block;
   padding: 5px 30px 5px 30px;
   -webkit-border-radius: 20px;
   -moz-border-radius: 20px;
   -o-border-radius: 20px;
   border-radius: 20px;
   margin-bottom: 10px;
   border: 2px solid black;
}

.breeProd:hover .name {
   border: 2px solid #42adff;
   -webkit-box-shadow: 0 0 10px #1368a9, 0 0 30px #103b5c inset;
   -moz-box-shadow: 0 0 10px #1368a9, 0 0 30px #103b5c inset;
   -o-box-shadow: 0 0 10px #1368a9, 0 0 30px #103b5c inset;
   box-shadow: 0 0 10px #1368a9, 0 0 30px #103b5c inset;
   
   -webkit-transition: -webkit-box-shadow 0.5s linear;
   -moz-transition: -moz-box-shadow 0.5s linear;
   -o-transition: -o-box-shadow 0.5s linear;
   transition: box-shadow 0.5s linear;
}

.breeProd .name a {
   color: #c3c3c3;
}

#closeBree {
   background: #191919;
   position: absolute;
   top: -2px;
   right: -2px;
   padding: 10px 15px 10px 15px;
   font-size: 30px;
   font-weight: bold;
   cursor: pointer;
   border: 2px solid black;
   -webkit-border-bottom-left-radius: 20px;
   -moz-border-radius-bottomleft: 20px;
   border-bottom-left-radius: 20px;
}

#closeBree:hover {
   border: 2px solid #42adff;
   -webkit-box-shadow: 0 0 10px #1368a9, 0 0 30px #103b5c inset;
   -moz-box-shadow: 0 0 10px #1368a9, 0 0 30px #103b5c inset;
   -o-box-shadow: 0 0 10px #1368a9, 0 0 30px #103b5c inset;
   box-shadow: 0 0 10px #1368a9, 0 0 30px #103b5c inset;
   
   -webkit-transition: -webkit-box-shadow 0.5s linear;
   -moz-transition: -moz-box-shadow 0.5s linear;
   -o-transition: -o-box-shadow 0.5s linear;
   transition: box-shadow 0.5s linear;
}

.home .product .image img {
   height: 100px;
}

/* Search page */

.searchPage h1 {
   float: none !important;
}

#searchTop [type="text"] {
   width: 460px;
   margin-right: 10px;
}

#searchTop select {
   height: 37px;
}

#searchTop .button {
   height: 37px;
   padding: 1px 20px 0 20px;
}

#searchBottom label {
   margin-right: 10px;
   position: relative;
   top: -1px;
}

/* Register page */

.registerPage td {
   width: 180px
}

#flashEffectContainer {
   overflow: hidden;
}


Merci
TUBBY.FR - Vente d'accessoires pour téléphones portable (en construction)

eCommerce sous Opencart 1.5.1.1 Français, avec le thème Bree

Merci pour tout l'aide que vous apportez
PaulDSB
Utilisateur enregistré
Utilisateur enregistré
 
Messages: 7
Inscription: 10 Aoû 2012, 21:30

Re: Mode de livraison prix non allignés

Messagepar LeorLindel » 12 Aoû 2012, 20:37

Est ce que c'est un template que tu as acheté car si c'est le cas, le mieux est de s'adresser à son concepteur ? Dans le cas échéant, il serait utile de mettre le lien de téléchargement.
Image
1 - A lire avant de poster un sujet
2 - Politique sur la signature.

Quand le sujet est résolu, pensez à ajouter la petite coche verte Image dans le titre initial en éditant votre premier message et non dans votre dernière réponse.
Merci


Toutes les extensions commerciales (templates ou modules payants) ne peuvent pas faire l'objet d'ouverture de sujet, prière de bien vouloir s'adresser au concepteur en cas de problème ou demande de renseignements.

Seul, on avance plus vite, à plusieurs on avance plus loin.
Avatar de l’utilisateur
LeorLindel
Administrateur
Administrateur
 
Messages: 4227
Inscription: 19 Fév 2010, 13:44
Localisation: Lutéce

Re: Mode de livraison prix non allignés

Messagepar PaulDSB » 12 Aoû 2012, 20:39

Oui je l'ai acheter, mais le gars ne répond jamais, donc je pense que je vais l'envoyer afin qu'on puisse m'aider, car là je suis bloqué !

Est-il possible de te l'envoyer par mp afin que tu puisse m'aider?
TUBBY.FR - Vente d'accessoires pour téléphones portable (en construction)

eCommerce sous Opencart 1.5.1.1 Français, avec le thème Bree

Merci pour tout l'aide que vous apportez
PaulDSB
Utilisateur enregistré
Utilisateur enregistré
 
Messages: 7
Inscription: 10 Aoû 2012, 21:30

Re: Mode de livraison prix non allignés

Messagepar LeorLindel » 12 Aoû 2012, 20:47

Tu peux me l'envoyer en fichier compressé par MP, mais je ne te garanti pas que je m'en occuperais rapidement, car j'ai énormément de boulot actuellement.
Image
1 - A lire avant de poster un sujet
2 - Politique sur la signature.

Quand le sujet est résolu, pensez à ajouter la petite coche verte Image dans le titre initial en éditant votre premier message et non dans votre dernière réponse.
Merci


Toutes les extensions commerciales (templates ou modules payants) ne peuvent pas faire l'objet d'ouverture de sujet, prière de bien vouloir s'adresser au concepteur en cas de problème ou demande de renseignements.

Seul, on avance plus vite, à plusieurs on avance plus loin.
Avatar de l’utilisateur
LeorLindel
Administrateur
Administrateur
 
Messages: 4227
Inscription: 19 Fév 2010, 13:44
Localisation: Lutéce


Retourner vers Soutien Général

Qui est en ligne

Utilisateurs parcourant ce forum: Aucun utilisateur enregistré et 0 invités

cron