Do you know if there is a plugin that will do something like the "Ministry Index" expanding section at the top of this site? http://www.ccvsocal.com/
Bob answers:
Do you know if there is a plugin that will do something like the "Ministry Index" expanding section at the top of this site? http://www.ccvsocal.com/
Yes there are few plugins:
[[LINK href="http://wordpress.org/plugins/sliding-panel/"]]http://wordpress.org/plugins/sliding-panel/[[/LINK]]
[[LINK href="https://wordpress.org/plugins/wordpress-sliding-drawer-content-area/screenshots/"]]https://wordpress.org/plugins/wordpress-sliding-drawer-content-area/screenshots/[[/LINK]]
[[LINK href="http://wordpress.org/plugins/the-mojo-sliding-widget-panel/"]]http://wordpress.org/plugins/the-mojo-sliding-widget-panel/[[/LINK]]
[[LINK href="https://wordpress.org/plugins/sliding-widgets/"]]https://wordpress.org/plugins/sliding-widgets/[[/LINK]]
[[LINK href="http://wordpress.org/plugins/schemeable-sliding-panel/"]]http://wordpress.org/plugins/schemeable-sliding-panel/[[/LINK]]
kld53 comments:
Thanks Bob. I'll check these out. A couple of them look like good options.
Navjot Singh answers:
I am afraid you can't achieve that using a plugin. It has to be coded according to the theme.
Romel Apuya answers:
you can write a plugin but think its not necessary to do..
try this in your functions.php of the theme you are using.
add_action('wp_head','add_bg_wide');
function add_bg_wide(){
echo '<style type="text/css">';
echo 'body{background:url("'.get_stylesheet_directory().'/images/bg_top.jpg'.'") repeat-x;}';
echo '</style> ';
}
ofourse upload the bg_top.jpg image to your images folder.
incase you have a wrapper div..maybe you need to changes the body to the class/id of your wrapper
kld53 comments:
Thanks Romel. I'll try this.
I was thinking it would be great to be able to have the content of the dropdown in a widget or similar for easier editing.?
Romel Apuya comments:
Hi,
here i found one
but the author already stoped support on the plugin
[[LINK href="http://wordpress.org/plugins/background-control/"]]http://wordpress.org/plugins/background-control/[[/LINK]]