Jump to content

abaut border colors


Recommended Posts

Do a search for the word "border" on your global.css file and you will find all the places where borders are used. Change the hex code to whatever colour you want the border to be.

For example, on lines 1630-1637 of themes/ex-blue/css/global.css is this block, which controls the product listings:

ul#product_list li {
   background: #d0d3d8 url('../img/block_category_item_bg.jpg') repeat-x;
   border: solid 1px #d0d3d8;
   padding: 6px;
   height:130px;
   clear:both;
   margin-bottom:0.3em;
}



You can change #d0d3d8 after border: to "blue" or a hex colour to choose a specific type of blue. You can remove the grey gradient background by removing the background: line, or you could edit the image and change the colour of it.

Link to comment
Share on other sites

×
×
  • Create New...