aitor21 Posted May 19, 2013 Share Posted May 19, 2013 (edited) hi! how I can change the font size only that module without affecting the rest? I use default template and prestashop 1.5 thanks in advance! Edited May 19, 2013 by aitor21 (see edit history) Link to comment Share on other sites More sharing options...
Sergio Ruiz Posted May 19, 2013 Share Posted May 19, 2013 Example: #featured-products_block_center { font-size: 15px; } Link to comment Share on other sites More sharing options...
vekia Posted May 19, 2013 Share Posted May 19, 2013 open the /modules/homefeatured/homefeatured.css file (remember that this file sometimes exist also in themes/yourtheme/css/modules/ dir - if so you have to open this one) to change size for all texts, add this: #featured-products_block_center{ font-size:20px!important; } to change font for product name, edit this: #featured-products_block_center .s_title_block, #featured-products_block_center h5 { font-size: 12px; color: #222; font-weight: bold; } to change the price, add this: #featured-products_block_center .price { font-size:20px; } to change button "view", add this: #featured-products_block_center .lnk_more { font-size:20px; } Link to comment Share on other sites More sharing options...
Recommended Posts