Page 1 of 1

[VQMod] Remove Language & Currency Boxes

Posted: Sat Feb 12, 2011 9:57 am
by dry_flood
This mod will remove the language & currency selection drop down boxes from the header.

Re: [VQMod] Remove Language & Currency Boxes

Posted: Sat Feb 12, 2011 12:06 pm
by Johnathan
Note that this can also be done (probably more efficiently) using CSS:

IN:

Code: Select all

/catalog/view/theme/YOURTHEME/stylesheet/stylesheet.css
REPLACE:

Code: Select all

#header .div7 {
    float: right;
    padding-top: 2px;
} 
WITH:

Code: Select all

#header .div7 {
    display: none;
}