Posts

Showing posts from November, 2014

Evenly placed Horizontal Blocks

Image
<div class="row">   <div class="block">Block 1</div>   <div class="block">Block 2</div>   <div class="block">Block 3</div> </div> Use the following styles ================== .row {   width: 100%;   margin: 0 auto;   text-align: center; } .block {  width: 100px;  float: left;  display: inline-block; } If found useful, buy me coffee for the time you saved.

Drupal Theme Changes - I customised my theme, but not showing!!!

Image
The issue can be resolved by clearing the cache. For Drupal Version 7, log int Admin Configoration >> Development >> Performance Hit 'Clear All Caches' button Refresh the browser to see the changes Cool!!! If found useful, buy me coffee for the time you saved.

How to get rid off VAT or Tax in opencart

Image
I do not want to show TAX anywhere in the customer facing pages. This is a solution for version 1.5.6.4 Stage 1 Remove all Tax classes from the admin area. This can be done at admin.  System/Localisation/Taxes/Tax Classes. There are default tax classes which you normally edit to suit your need. Just remove all listed classes. This will make sure that shopping cart, invoice etc will not show Tax. Stage 2 Go to Admin. System/Settings/Edit/Option Scroll down to Taxes. Make the following changes. Display Prices With Tax: No VAT Number Validate: No Cool! If found useful, buy me coffee for the time you saved.