Jump to content

How to change block border colours in 1.4? (Pic Attached)


Recommended Posts

if you wanted to change the color of borders you need to find

 

div.block .block_content {

border-left: 1px red;

border-right: 1px red;

padding: 0 0.7em;

background: #f1f2f4 url('../img/block_bg.jpg') repeat-x bottom left;

min-height: 16px

}

 

changed to

 

 

div.block .block_content {

border-left: 1px solid red;

border-right: 1px solid red;

padding: 0 0.7em;

background: #f1f2f4 url('../img/block_bg.jpg') repeat-x bottom left;

min-height: 16px

}

 

if you note the difference the difference is "solid"

 

Thanks

Delonix

Link to comment
Share on other sites

However if you wanted to change the border color of exclusive boxes then you need to change the class

 

div.exclusive .block_content {

background: #bdc2c9 url('../img/block_exclusive_bg.jpg') repeat-x bottom left;

border-left: 1px solid red;

border-right: 1px solid red

}

Link to comment
Share on other sites

×
×
  • Create New...