Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

CSS Question for Widget WordPress

  • SOLVED

Hello, could anyone tell me how to get the line on the left (of the widget to the far right) to come all the way down to the bottom? See attachment. The site is http://fishnpack.com/

Thanks!

Answers (1)

2012-06-28

Daniel Yoen answers:

style.css:1325

#footer-top .col-2.col-right:last-child div.col-wrapper {
background: url(images/trans-border.png) repeat-y left;
}

change to :

#footer-top .col-2.col-right:last-child div.col-wrapper {
background: url(images/trans-border.png) repeat-y left;
min-height:207px;
}


Kyle Hungate comments:

thanks!