Jump to content

background color for left column only down to the footer


Recommended Posts

Hi,

Is there a way to have a background color in the left column that goes all the way down to the bottom of the page section?

I can put a background color on the left column but it is only there under the left column modules and doesn't go all the way down to the bottom of the page section.

Thanks!

Link to comment
Share on other sites

  • 2 years later...

this may helps you - from the thread - http://www.prestashop.com/forums/topic/129567-how-to-change-block-border-colours-in-14-pic-attached/page__p__632323__hl__thanks%20zyko__fromsearch__1?do=findComment&comment=632323

 

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

×
×
  • Create New...