Thanks - anyway heres the temporary hack to change the button over.
OPEN
/components/com_virtuemart/themes/default/theme.css
FIND
.notify_button {
background: url( 'images/notify_blue.gif' ) no-repeat center transparent;
}
-- to --
.notify_button {
background: url( 'images/
}
And you need to change your language adminstrator/components/com_virtuemart/language/common/english.php):
'VM_CART_NOTIFY' => 'Notify Me!',
NOTE: thats 'adminstrator/components' not just 'components' :)
At this point I still have a problem. And thats that I need to change the size of the display for this button. for this go back to .css file we where ammending earlier and add
.notify_button {
height: 50px;
width: 115px;
}
to the .notify_button class.
All done :)
Check Cornish Clothing Store for the finished store - Coming Soon
1 comment:
Hi,
better is:
.notify_button {display:none;}
in the theme.css
only one Line
Post a Comment