Recent Topics

1 Mar 20, 2007 21:59    

My b2evolution Version: 1.9.x

Hi,

short question: I want to change the design of the comments - make the boxes a little bit wider, don´t show the status of the poster and disable the contact icon etc. - and perhaps as well the design of the post-a-comment box below the comments itself...

In which file I have to do this? There are so many...

Thanks in advance,
Daniel

2 Mar 20, 2007 23:02

Styling the comments will happen in your skins/your_skin/stylesheet.css file (whatever it happens to be named). The structure of the comments is defined in one of two places. It might be skins/_feedback.php, and it might be skins/your_skin/_feedback.php. If you don't have that file in your 'your_skin' folder you can copy it from skins to skins/your_skin and edit it there. Either way though, that's the file that you want to edit to make structural changes to your comments section.

3 Mar 20, 2007 23:18

Thanks, I think that will help...

4 Mar 24, 2007 17:07

Ok, didn't get it... which exact entry in my custom.css I have to modify to make the comment boxes a little bit wider?

I found this and changed the 97% to 99% and even to 100% but nothing happens... Is this the wrong entry? Which is the right one?

input.bComment,
textarea.bComment
{
	background-color: #eee;
	border: 1px solid #ccc;
	width: 97%;
	padding: 2px;
	margin: 0ex;
}

5 Mar 24, 2007 17:30

In your CSS files find "comments.css"
Change this bit from...

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

to

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


Form is loading...