Title: Specific colors
Last modified: August 21, 2016

---

# Specific colors

 *  Resolved [altonc2](https://wordpress.org/support/users/altonc2/)
 * (@altonc2)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/specific-colors/)
 * From what I can tell the only way to specify a color though the settings dialog
   is via a random slider – that displays a color code.
    Why can’t I type in my 
   own color code? I can highlight the code, but not type in my own. This seems 
   like basic functionality, or am I doing something wrong?
 * Love the plug-in.
 * Thanks,
    A
 * [http://wordpress.org/plugins/imdb-info-box/](http://wordpress.org/plugins/imdb-info-box/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [sunnyverma1984](https://wordpress.org/support/users/sunnyverma1984/)
 * (@sunnyverma1984)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/specific-colors/#post-4526372)
 * You can’t manually input colors because all color fields has read-only attribute.
   
   You can remove these attribute in file **imdbinfobox.php** in line number 125,
   129, 133 and 137
 * find this
 *     ```
       <tr>
           <td><strong>Heading Background Color</strong></td>
           <td><input class="color" value="<? echo get_option('imdbheadbg'); ?>" name="imdbheadbg"  readonly="readonly" /></td>
         </tr>
         <tr>
           <td><strong>Heading Text Color</strong></td>
           <td><input class="color" value="<? echo get_option('imdbheadfg'); ?>" name="imdbheadfg" readonly="readonly" /></td>
         </tr>
         <tr>
           <td><strong>Body Background Color</strong></td>
           <td><input class="color" value="<? echo get_option('imdbbodybg'); ?>" name="imdbbodybg"  readonly="readonly" /></td>
         </tr>
         <tr>
           <td><strong>Body Text Color</strong></td>
           <td><input class="color" value="<? echo get_option('imdbbodyfg'); ?>" name="imdbbodyfg" readonly="readonly" /></td>
         </tr>
       ```
   
 * and replace with
 *     ```
       <tr>
           <td><strong>Heading Background Color</strong></td>
           <td><input class="color" value="<? echo get_option('imdbheadbg'); ?>" name="imdbheadbg" /></td>
         </tr>
         <tr>
           <td><strong>Heading Text Color</strong></td>
           <td><input class="color" value="<? echo get_option('imdbheadfg'); ?>" name="imdbheadfg" /></td>
         </tr>
         <tr>
           <td><strong>Body Background Color</strong></td>
           <td><input class="color" value="<? echo get_option('imdbbodybg'); ?>" name="imdbbodybg" /></td>
         </tr>
         <tr>
           <td><strong>Body Text Color</strong></td>
           <td><input class="color" value="<? echo get_option('imdbbodyfg'); ?>" name="imdbbodyfg" /></td>
         </tr>
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Specific colors’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/imdb-info-box_152743.svg)
 * [IMDB Info Box](https://wordpress.org/plugins/imdb-info-box/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/imdb-info-box/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/imdb-info-box/)
 * [Active Topics](https://wordpress.org/support/plugin/imdb-info-box/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/imdb-info-box/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/imdb-info-box/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [sunnyverma1984](https://wordpress.org/support/users/sunnyverma1984/)
 * Last activity: [12 years, 2 months ago](https://wordpress.org/support/topic/specific-colors/#post-4526372)
 * Status: resolved