RickieSee Posted September 13, 2011 Share Posted September 13, 2011 Hi, I've managed to change the header and footer images of the blocks, however can't seem to find how to change the side borders. I've looked through global.css. Still no joy! Thanks Please see pic. Link to comment Share on other sites More sharing options...
zyko Posted September 13, 2011 Share Posted September 13, 2011 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 More sharing options...
zyko Posted September 13, 2011 Share Posted September 13, 2011 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 More sharing options...
zyko Posted September 13, 2011 Share Posted September 13, 2011 the above changes are in global.css file Link to comment Share on other sites More sharing options...
Patric Posted September 13, 2011 Share Posted September 13, 2011 Topic moved into the "Integration" section. Link to comment Share on other sites More sharing options...
RickieSee Posted September 16, 2011 Author Share Posted September 16, 2011 Thanks Zyko! Link to comment Share on other sites More sharing options...
zyko Posted September 17, 2011 Share Posted September 17, 2011 you are most welcome Link to comment Share on other sites More sharing options...
Recommended Posts