Community Support for OpenDocMan (Deprecated)
Issue with php file header control - Printable Version

+- Community Support for OpenDocMan (Deprecated) (https://forum.opendocman.com)
+-- Forum: OpenDocMan Community Discussion (https://forum.opendocman.com/forum-5.html)
+--- Forum: OpenDocMan Support - Community Based (https://forum.opendocman.com/forum-6.html)
+--- Thread: Issue with php file header control (/thread-352.html)



Issue with php file header control - allnet - 12-22-2010

Just trying to hide Godaddy Banner on Free Hosting account so I can demo the site for someone, any idea on which php file to insert function or css so this can be accomplished? temporarily of course. I've tried inserting the following in various files but none seems to work so far:

<style>
#conash3D0
{
display:none;
}
</style>

and/or


function godaddy_style(){
?>
<style type="text/css">
#conash3D0
{
display:none;
}
</style>
<?php
}

add_action('header','godaddy_style');
add_action('footer','godaddy_style');

Suggestions?


Re: Issue with php file header control - allnet - 12-27-2010

Can this be accomplished?