Perhaps you’ve created something in MS Word and would now like to use that same color using html, or vice versa. Here is a little tool you may find very useful: HEX to RGB Color Converter.
Accessing Font Color Codes in MS Word
To access the font color in MS Word, do the following:
- Open your document.
- Highlight the word where your color exists. (Will address tables further down.)
- Click on the arrow to the right of the A icon in the top tool bar of your document.
- Click on “More Colors”.
- Click on “Custom”. There you will find the 3 codes for RGB (red green blue). Use that using the tool to create an html color for that color. Or update that color using your existing html color code.
Accessing Background Color Codes in MS Word
If you are attempting to change a background color within a table or access the RGB color code rather than highlight a word do the following:
- Click in the cell where the color exists.
- Right click.
- Click on “Borders and Shading”.
- Click on the “Shading” tab above.
- Under “Fill”, click on the drop down arrow. (If no color exists, rather than show a color it will be show “No Color”.)
- Click on “More Colors” and find the codes for RGB.












Twenty Ten Child Theme Remove Comments from Pages
In Twenty Ten Child Theme on January 7, 2012 by Your Friend Tagged: remove comments from page, remove comments from pages, remove comments from static front page, twenty ten child theme
You may remove comments from any of your pages in your Wordpres Twenty-Ten child theme. Whether you are looking to remove comments from a static page, a particular page or all pages, see the instructions below.
CODE TO ADD TO YOUR CHILD THEME’S FUNCTION.PHP FILE:
add_filter( 'comments_template', 'remove_comments_template_on_pages', 11 );function remove_comments_template_on_pages( $file ) {if ( is_page() )
$file = STYLESHEETPATH . '/no-comments-please.php';
return $file;
}
Leave a Comment