I can't imagine what you want...could you provide a screenshot?
Opencart Templates, Modules, Themes & Custom Development | ShopThemer
You have a custom theme or it's the default one?
Opencart Templates, Modules, Themes & Custom Development | ShopThemer
First you must edit catalog/view/theme/default/template/module/currency.tpl and replace
with
and
with
Then go to your stylesheet/stylesheet.css and around line 116 change the width of #currency div to about 130px and left positioning to about 380px. Here you can change the "Currency" text color too.
Then go to "#currency a" line ~ 124 and add a background, change the color of the currency sign. Remove or change the border color.
After "#currency a" closes, add
Line ~ 134 - Change the color of the selected currency symbol.
Code: Select all
<div id="currency"><?php echo $text_currency; ?><br />
Code: Select all
<div id="currency"><?php echo $text_currency; ?>
Code: Select all
<a title="<?php echo $currency['title']; ?>"><b><?php echo $currency['symbol_left']; ?></b></a>
<?php } else { ?>
<a title="<?php echo $currency['title']; ?>"><b><?php echo $currency['symbol_right']; ?></b></a>
Code: Select all
<a class="selected" title="<?php echo $currency['title']; ?>"><b><?php echo $currency['symbol_left']; ?></b></a>
<?php } else { ?>
<a class="selected" title="<?php echo $currency['title']; ?>"><b><?php echo $currency['symbol_right']; ?></b></a>
Then go to your stylesheet/stylesheet.css and around line 116 change the width of #currency div to about 130px and left positioning to about 380px. Here you can change the "Currency" text color too.
Then go to "#currency a" line ~ 124 and add a background, change the color of the currency sign. Remove or change the border color.
After "#currency a" closes, add
Code: Select all
#currency a.selected {background:#yourcolor;}
Opencart Templates, Modules, Themes & Custom Development | ShopThemer
Who is online
Users browsing this forum: No registered users and 21 guests