Recent Topics

1 Jan 14, 2011 21:08    

My b2evolution Version: 4

Can anyone tell me where this dotted border here is coming from? I've looked everywhere and can't seem to find it...

http://fairjustice.net/index.php/Contact/

2 Jan 15, 2011 00:12

It should be in the 'styles.css' files in your skin folder. Something like:

/* Styles for comments */
div.bComment, /* Entire comment block */
form.bComment { /* New comment form */
margin: 1ex 0;
border: 1px dotted #999;
}

You can make it a solid border with:

border: 1px solid #999;

Or just get rid of it entirely:

border: none;

3 Jan 15, 2011 00:59

Yeah, I've looked all through the css and can't find it... A search for "dotted" pulls up nothing, a search for "comment" pulls up nothing, "form" - nothing relevant, I've looked at every "border" reference - nothing...it's really weird.

4 Jan 15, 2011 01:07

If your style.css file doesn't have that particular section of code... try adding it. ;)

/* Styles for comments */
div.bComment, /* Entire comment block */
form.bComment { /* New comment form */
margin: 1ex 0;
border: none;
}

5 Jan 15, 2011 02:03

You, my friend, are a genius!


Form is loading...