/** 
* PeepSo Community Blog post improvements
*
* Inserting CSS inside <head> embed iframe
* Improvements for embedding blog posts in the PeepSo community stream
*
* Author: mypetcafe.eu
*/
 
function my_custom_wp_embed_styles() {
    ?>
    <style>
        .wp-embed {
		    font-size: 16px !important;
            color: #8C8C8C !important;
            border: none !important;
            background: none !important;
        }
	
	    .wp-embed a {
			font-size: 18px !important;
            color: #e53935 !important;
            border: none !important;
            background: none !important;
        }
	
	    .wp-embed-footer {
            display: none !important;
        }
    </style>
    <?php
}
add_action('embed_head', 'my_custom_wp_embed_styles');
Powered by Codespace