Wordpress Help

Status
Not open for further replies.

ShArPsUtEr

Active Member
28
2011
0
0
Hello guys i was customizing my theme and got a problem . can anyone tell me how can i change the background of views as in
5742cde91e.png
to this
71b180ff54.png
...


Help needed . if any one can do this . i'll be really Thankful.

Thanks & Regards
 
4 comments
Just add a link tag around the 'x views'. You will find it in your theme's index.php, something like this:
Code:
<p class="links"><a title="<?php //... ?>" href="<?php //... ?>" >Continue Reading</a>
<a title="Comment on <?php //... ?>" href="<?php //... ?>">No Comments</a>
[COLOR=Red]<a href="#">[/COLOR]<?php //... ?> views[COLOR=Red]</a>[/COLOR]
</p>
Eventually you can change the "#" part to "<?php the_permalink(); ?>" to make the link direct you to the post.
To change the text color, modify system-all.css, around line 67 there are rules for #system .item > .links a. Add color: #3785C7;
 
Status
Not open for further replies.
Back
Top