Jump to content

background modules


Recommended Posts

 I would like to know if I can apply the background of the title to a single module. For example, I have 2 modules "categories" and "featured products" and when I increase the size of the title space it changes for all the modules and I want the change only for the "block_categories" module

Link to comment
Share on other sites

you can use css styles for this.

each block has got own unique id or classname

in this case, you can change background only for certain pages, or just objects.

for example, featured products block has got id featured-products_block_center

so you can define styles like:

#featured-products_block_center .title_block {
background:blue!important;
}

you can do the same for all other modules, but you have to check block id or classname first

Link to comment
Share on other sites

×
×
  • Create New...