Jump to content

Change font size only of featured products


Recommended Posts

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

×
×
  • Create New...