Hi D. Are you referring to the sidebar or the posts?
The For Example When I Hold In the Home At The Word HTC It goes from black to blue on my website xtreme-developing.com/
That’s javascript activating the link to the single post. This thread discusses a way to change the visual effects of the link.
I did it but how do i change the color??
Im a noob in coding so please undertand it
The color used on post mouseover is set by Theme Options > Styling > Primary Color. Or, you can use css to change just the post hover color:
/* change post hover color to red */
.post-hover:hover .post-title a,
.post-title a:hover {
color: #f00;
}