![]() |
|
Home | Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]() Store ID: 39876
Website URL: www.oneshopsolution.com/homedecor URL to page in question: 1) Can I change the font and font size of the product name and detail? Is ther any tutorial on this subject? 2) For products from Amazon why the price reflected on the store is the List Price and not the Selling Price? Is there any way I can change them? Thanks for your help. Regards, Janet Tan. |
#2
|
||||
|
||||
![]() Hi,
Welcome to the forums! 1. You can add code like this to your Custom CSS: Code:
/* Product name in list */ #view .pl .t1 .bdr h2 a { font-family: verdana, sans-serif; font-size: 11px; color: gray; } /* Product description in list */ #view .pl .t1 .bdr .desc { font-family: arial; font-size: 10px; color: gray; } /* Product name in sidebar */ #wdgt_pl .pl .bdr h2 a { font-family: verdana, sans-serif; font-size: 11px; color: gray; } /* Product description in sidebar */ #wdgt_pl .pl .bdr .desc { font-family: arial; font-size: 10px; color: gray; } 2. The prices you see are the prices we get from the Amazon API. You can change the price by clicking the "more info" link for the product you want to change (in the Factory). Eric
__________________
![]() ![]() ![]() ![]() |
#3
|
|||
|
|||
![]() If you want to display sales prices (if one is provided by merchant) replace this line in your product list module
Code:
<div class="prc">[product.currency mode="sign"][product.price]</div> Code:
<?php if ($product->saleprice > 0 && $product->saleprice < $product->price) { ?> <div class="prc"> <small> Was: <span style="text-decoration: line-through;">[product.currency mode='sign'][product.price]</span> Now: <span style="font-weight: bold; color:red;">[product.currency mode='sign'][product.saleprice]</span> </small> </div> <?php } else { ?> <div class="prc"> <small> [product.currency mode='sign'][product.price] </small> </div> <?php } ?> |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Changing font size on home page.... | gutfeelboy | Questions | 3 | June 28th, 2011 12:39 PM |
Reduce font size and change font type | firstpage | Questions | 11 | March 24th, 2011 11:24 AM |