Jump to content

[Solved] About BackGround Color?


Recommended Posts

Hello Friends,

I want to edit background color of featured product from Grey To White & also the the block color of FEATURED PRODUCT FROM Grey to Blue how to do it?

Please find image for reference.

Thanks
Vilas

45399_4zA3A2KsKBS7eAGB3Sp7_t

Link to comment
Share on other sites

which version do you have?if you are using PS 1.4,,,just edit the global.css,,and find code below

    div.block .block_content {
       border-left: 1px #d0d3d8;
       border-right: 1px #d0d3d8;
       padding: 0 0.7em;
       background: #f1f2f4 url('../img/block_bg.jpg') repeat-x bottom left;
       min-height: 16px
   } 


change the background code with the hexa color code,if you want to change from grey to blue,,just pick up the hexa code for blue (66ccff),for example like this

    div.block .block_content {
       border-left: 1px #d0d3d8;
       border-right: 1px #d0d3d8;
       padding: 0 0.7em;
       background: #66ccff;
       min-height: 16px
   } 



Hope it helps,

Cheers


Andi

Link to comment
Share on other sites

find this code

/* Special style for block products in center column */
#center_column .products_block { border: none }
#center_column .products_block { color: #595a5e }
#center_column .products_block h4 { line-height: 1.3em }
#center_column .products_block .block_content {
   background: #d0d3d8 none;
   padding: 0
}
#center_column .products_block ul li:hover { background-color: #bdc2c9 }
#center_column .products_block ul li {
   float: left;
   background-color: #d0d3d8;
   margin-top: 0;
   padding: 0 0 1px;
   width: 133px;
   border-right: 1px solid white;
   border-bottom: 1px solid white
}


there are 4 colors above,,change them with another color,,,

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...