Title: Help changing css color
Last modified: August 22, 2016

---

# Help changing css color

 *  Resolved [fewfewfew](https://wordpress.org/support/users/fewfewfew/)
 * (@fewfewfew)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/help-changing-css-color/)
 * Sorry for yet another request. I have tried searching threw the code and finding
   the correct css to adjust In my child theme section but unable to find the code.
 * This picture > [http://i57.tinypic.com/16kb0ic.png](http://i57.tinypic.com/16kb0ic.png)
 * As you can see Inside the red marking on that picture, you can see a random color
   under the border around the button. How can I change this bottom border color
   to look like this.
 * [http://i62.tinypic.com/25k1vzn.png](http://i62.tinypic.com/25k1vzn.png)
 * The color code is: #041620
 * Hope you can help!

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

 *  Theme Author [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/help-changing-css-color/#post-5943593)
 * Open `style.css` and find:
 *     ```
       .post-template-1 .details .post-small-button {
         width: 48px;
         text-align: center;
         border-width: 1px;
         border-style: solid;
         font-size: 11px;
         -webkit-box-shadow: 0 2px 0 rgba(225,225,225,0.5);
         -moz-box-shadow: 0 2px 0 rgba(225,225,225,0.5);
         box-shadow: 0 2px 0 rgba(225,225,225,0.5);
       ```
   
 * change with:
 *     ```
       .post-template-1 .details .post-small-button {
         width: 48px;
         text-align: center;
         border-width: 1px;
         border-style: solid;
         font-size: 11px;
         -webkit-box-shadow: none !important;
         -moz-box-shadow: none !important;
         box-shadow: none !important;
       ```
   
 *  Thread Starter [fewfewfew](https://wordpress.org/support/users/fewfewfew/)
 * (@fewfewfew)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/help-changing-css-color/#post-5943664)
 * Thanks this worked! 🙂

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

The topic ‘Help changing css color’ is closed to new replies.

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

 * 2 replies
 * 2 participants
 * Last reply from: [fewfewfew](https://wordpress.org/support/users/fewfewfew/)
 * Last activity: [11 years, 1 month ago](https://wordpress.org/support/topic/help-changing-css-color/#post-5943664)
 * Status: resolved