Title: Custom CSS changes to front page
Last modified: September 1, 2016

---

# Custom CSS changes to front page

 *  Resolved [rowdya22](https://wordpress.org/support/users/rowdya22/)
 * (@rowdya22)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/custom-css-changes-to-front-page/)
 * I am trying to customize all colors on the frontpage. I have been reviewing this
   post:
 * [https://wordpress.org/support/topic/front-page-color-changes-1](https://wordpress.org/support/topic/front-page-color-changes-1)
 * and tried to change the post title, post text, border (the animated shaded one)
   but could not.
 * I am running a child theme and updating my style.css
 * Below is a brief example of what I have:
 *     ```
       # Post Text
       .entry-content {
           color: green;
       }
   
       # Post Title
       .entry-header {
           color: lime;
       }
       ```
   
 * My site is:
 * [http://keto.therowdyhelpdesk.com](http://keto.therowdyhelpdesk.com)

Viewing 4 replies - 1 through 4 (of 4 total)

 *  [Emmanuelle Demeules](https://wordpress.org/support/users/mioudesign/)
 * (@mioudesign)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/custom-css-changes-to-front-page/#post-7604871)
 * Hi,
 * You made a mistake in the way you wrote your “comments” in your style sheet. 
   You should not use #Post Text but `/* Post Text */` instead. So it would look
   like :
 *     ```
       /* Hover Color */
       .posts .cover-link:hover {
       border-color: green;
       }
   
       /* Post Text */
       .posts .entry-content {
           color: red;
       }
   
       /* Post Title */
       .posts .entry-header {
           color: lime;
       }
       ```
   
 * And then it just should work fine!
 *  [Emmanuelle Demeules](https://wordpress.org/support/users/mioudesign/)
 * (@mioudesign)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/custom-css-changes-to-front-page/#post-7604875)
 * Oh also, I just noticed that if you want to change the Post Title, you should
   use this selector :
 * `.posts entry-header a`
 *  Thread Starter [rowdya22](https://wordpress.org/support/users/rowdya22/)
 * (@rowdya22)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/custom-css-changes-to-front-page/#post-7604890)
 * Awesome that did it thanks. I have been working in bash to much, cant keep all
   the comments straight!
 *  [Emmanuelle Demeules](https://wordpress.org/support/users/mioudesign/)
 * (@mioudesign)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/custom-css-changes-to-front-page/#post-7604908)
 * You’re welcome. You can close that thread!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Custom CSS changes to front page’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/dyad/1.0.10/screenshot.png)
 * Dyad
 * [Support Threads](https://wordpress.org/support/theme/dyad/)
 * [Active Topics](https://wordpress.org/support/theme/dyad/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/dyad/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/dyad/reviews/)

## Tags

 * [border](https://wordpress.org/support/topic-tag/border/)
 * [css](https://wordpress.org/support/topic-tag/css/)
 * [shading](https://wordpress.org/support/topic-tag/shading/)

 * 4 replies
 * 2 participants
 * Last reply from: [Emmanuelle Demeules](https://wordpress.org/support/users/mioudesign/)
 * Last activity: [9 years, 9 months ago](https://wordpress.org/support/topic/custom-css-changes-to-front-page/#post-7604908)
 * Status: resolved