Quote:
Originally Posted by gotpump
Sorry to add to the question craze. But if I'm updating strictly instock and out of stock lvls using a .csv import it adds all the products to What's New. Is there anyway to disable this from happening?
Thanks again,
NM found a way around it.
|
You need to prevent import script from changing
add_date field in
xcart_products table
Quote:
Thanks for the great mod ! Quick question, how can I change the size of the bubble and the font size/type of the text inside? I assume it's in Whats_New.tpl but I don't want to break anything.
|
lines 33,34 of whats_new.tpl:
Code:
popup_top = round(viewportheight/2) - 23; //23 - half of the height
popup_left = round(viewportwidth/2) - 178; //178 - half of the width
and lines 85,86
Code:
newdiv.style.height = '36px';
newdiv.style.width = '356px';
You need to change height and width of the background image as well
Add into your css file to change font size/color:
Code:
#bubble{font-size:12px}
#bubble a:link, #bubble a:visited, #bubble a:hover, #bubble a:active{color:#cccccc;}