
Originally Posted by
hippocrates1985
Hello Hello my friend. It's me back again for more help.

1- Change the name " Previous post".
2- Change the name " No Comments Yet ".
3- Change the name "Leave a comment".
These are more WordPress things, where you need to dig into the WP code (which is not my thing) so I have to leave them to someone else (perhaps it's worth starting a new thread just for that sort of thing).
I rally want to move the boxes from right to left and also change the size because as u can see the word "comment" is not clear there ... I want to move the labels which are next to the boxes from left to right and change the label itself.
Try changing (style.css 2518)
Code:
#commentform label {
display: block;
width: 70px;
float: left;
}
to
Code:
#commentform label {
display: block;
width: 110px;
float: right;
}
Also add this:
Code:
label small {display: none;}
and change this (2525)
Code:
#commentform textarea {
width: 618px;
max-width: 618px;
min-width: 618px;
height: 206px;
min-height: 206px;
overflow: auto;
}
to this
Code:
#commentform textarea {
width: 500px;
max-width: 500px;
height: 206px;
min-height: 206px;
overflow: auto;
}
and change the label itself
Again, a WP question, as you need to dig into the PHP files behind the scenes and change the WP templates.
Bookmarks