Simple Machines Community Forum

SMF Support => SMF 2.0.x Support => Topic started by: xyxis_fahim on March 20, 2008, 02:55:18 PM

Title: Red Bar under post ?
Post by: xyxis_fahim on March 20, 2008, 02:55:18 PM
Hello,
I'm using the SMF 2 public. All works great but just wondering how do I remove the red bar under every post?

Image below :

Title: Re: Red Bar under post ?
Post by: Yağız... on March 20, 2008, 03:16:02 PM
It's because of my theme.
Search in style.css:
.post, .personalmessage
{
color: #545454;
font: 12px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
text-decoration: none;
}
.post, .personalmessage a:link
{
font: 12px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
text-decoration: none;
border-bottom: 1px dotted #4D528C;
}
.post, .personalmessage a:visited
{
color: #545454;
border-bottom: 1px dotted #4D528C;
font: 12px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
text-decoration: none;
}
.post, .personalmessage a:hover
{
color: #545454;
border-bottom: 1px dotted #FF0000;
font: 12px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
text-decoration: none;
}
.post, .personalmessage a:active
{
color: #545454;
border-bottom: 1px dotted #FF0000;
font: 12px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
text-decoration: none;
}

Replace with this:
.post, .personalmessage
{
width: 100%;
overflow: auto;
line-height: 1.3em;
}
Title: Re: Red Bar under post ?
Post by: xyxis_fahim on March 20, 2008, 05:20:30 PM
Hey that worked great. :)
Thanks