Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Comments, trackbacks & pings (http://forum.bytesforall.com/forumdisplay.php?f=19)
-   -   Reply link changing color (http://forum.bytesforall.com/showthread.php?t=75)

neocratus Dec 24, 2008 01:21 AM

Reply link changing color
 
Is there any way to change the color or the REPLY link in the threaded comments?
or to make it BOLD?

i mean.. where can i find the file to edit it.. and how?

Flynn Dec 24, 2008 01:43 AM

In comments.php, replace all 3 occurrences of

PHP Code:

'reply_text'=>__(' · Reply','atahualpa'), 

with

PHP Code:

'reply_text'=>__(' <span class="replytext">&middot; Reply</span>','atahualpa'), 

and add

HTML Code:

span.replytext {
font-weight: bold;
color: #cc0000;
}

to the CSS styles via Atahualpa Theme Options -> HTML/CSS Inserts -> CSS Inserts

You can also change the "Reply" text, remove the
HTML Code:

&middot;
etc..

windhover4 Jul 11, 2010 11:04 AM

Flynn, Your advise on this topic seems to be right on point with what I am trying to do. However, having made the changes you suggested, checked and rechecked the accuracy of the changes, I do not get any change in the "black" typeface I would like to change to grey #666666. Please see Comments section of my page: http://basicallybasie.com/?p=225#comments

Thank you for any additional suggestions.

wp_list_comments(array(
'avatar_size'=>$bfa_ata['avatar_size'],
'reply_text'=>__(' <span class="replytext">; Reply</span>','atahualpa'),
'login_text'=>__('Log in to Reply','atahualpa'),
'callback' => bfa_comments,
'type' => 'comment'
));

wp_list_comments(array(
'avatar_size'=>$bfa_ata['avatar_size'],
'reply_text'=>__(' <span class="replytext">; Reply</span>','atahualpa'),
'login_text'=>__('Log in to Reply','atahualpa'),
'callback' => bfa_comments,
'type' => 'pings'
));

} else {

wp_list_comments(array(
'avatar_size'=>$bfa_ata['avatar_size'],
'reply_text'=>__(' <span class="replytext">; Reply</span>','atahualpa'),
'login_text'=>__('Log in to Reply','atahualpa'),
'callback' => bfa_comments,
'type' => 'all'
));

} ?>

</ul>
<!-- / Comment List -->

<?php bfa_next_previous_comments_links('Below'); ?>

<?php else : // If there are NO comments ?>


CSS Inserts
Add CSS code here that you want to append to your theme's CSS file.

h3 {
font-size: 1.75em;
font-weight: bold;
color:#ABBB38;
}
span.replytext {
font-weight: bold;
color: #666666;
}

juggledad Jul 11, 2010 01:49 PM

windhover4, what version of Aatahualpa are you using. Flynn's reply is from 2008 several releases ago


All times are GMT -6. The time now is 10:44 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.