Here is a little tip for those using a custom theme with rounded corners on the main_block.png image. Sometimes with rounded corners while using Simple Portal you may run into this pesky little line on the left. This usually only occurs in block headers but not the forum category headers or the Info Center.
Before:
After:
Here is the fix. In the portal.css file find this, usually at the very bottom.
h4.catbg span.left, h4.catbg2 span.left, h3.catbg span.left, h3.catbg2 span.left, .table_list tbody.header td span.left
{
float: left;
display: block;
width: 9px;
height: 31px;
background: url(../images/theme/main_block.png) no-repeat 0 -160px;
}
h4.titlebg span.left, h3.titlebg span.left
{
float: left;
display: block;
width: 9px;
height: 31px;
background: url(../images/theme/main_block.png) no-repeat 0 -200px;
}Change to:
h4.catbg span.left, h4.catbg2 span.left, h3.catbg span.left, h3.catbg2 span.left, .table_list tbody.header td span.left
{
float: left;
display: block;
width: 9px;
height: 33px;
background: url(../images/theme/main_block.png) no-repeat 0 -160px;
}
h4.titlebg span.left, h3.titlebg span.left
{
float: left;
display: block;
width: 9px;
height: 33px;
background: url(../images/theme/main_block.png) no-repeat 0 -200px;
}Essentially all you need to do is change the heights from 31px to 33px.
Note: If your custom main_block.png image has larger catbg, tirlebg, etc. areas then the height size numbers may vary slightly.
