sabirmulla
Member
Posted 1 year ago #
Hi guys,
I have a problem with my subscribe2 plugin which appears on the sidebar. the url is http://www.chumu.com/blog/ There is a wide gap (dont knw why ?) at the top. When i use any other theme, it appears fine. Is there a way to call the plugin in the sidebar using another method, rather than using widget option from admin control panel.
Any help would be highly appreciated.
Thanks.
I'm not sure why it happen, it seem like the subscribe2's plugin form is inside the "search box", you can try the below CSS workaround
Find in your theme's style.css (on line 37)
.search { float: right; margin-top: 155px; }
replace it with
.search { float: right; /*margin-top: 155px;*/ }
sabirmulla
Member
Posted 1 year ago #
No. It diddnt work.
Actually when i remove the widget it appears fine. Is there an alternate way to call the plugin (to write the <php code ...) in the sidebar.php file.
sabirmulla
Member
Posted 1 year ago #
Hoorrah !!!
Its done. I am not using the plugin through widget anymore. I manually entered the below code in my sidebar.php and hola... it works.
<?php
$content = apply_filters('the_content', '<!--subscribe2-->');
echo $content;
?>