Metin Saylan
Forum Replies Created
-
Forum: Plugins
In reply to: [Dropdown Menu Widget] [Plugin: Dropdown Menu Widget] ShortcodeNope, but there is a php template tag if that will do. Read more about template tag usage here.
You can write it like this:
ul.dropdown .page-item-10 { margin-right: 50px; /* Change margin value to your needs */ }
This is not a problem caused by the plugin. It is your themes CSS code. I can show you if you send me a link.
It is used for center alignment. If you remove it menu won’t center when you select center. You can remove if you don’t need it tho.
Forum: Plugins
In reply to: [Dropdown Menu Widget] Menu hiding behind youtube videoTry my z-index fix plugin which automatically fixes z-index problems for videos added using URL only.
https://shailan.com/wordpress/plugins/z-index-fix-for-wordpress/
For the solution of problem, you should always have
wmode="opaque"
orwmode="transparent"
in your embed code.Forum: Plugins
In reply to: [Subpages Extended] [Plugin: Subpages Extended] Widget Displays All PagesHello Tim,
What shortcode are you using?
If you are not using the shortcode, you can disable auto insert from options page. However i made a fix recently to the subpages. Did that work?
Thanks
Forum: Themes and Templates
In reply to: Add another sidebar to twentyten theme?Yes it is possible. Just add this code to your functions.php file and it will add the sidebar to your theme:
function add_my_sidebars(){ register_sidebar( array( 'name' => 'My sidebar', 'id' => 'my-sidebar', 'description' => 'Just a little description', 'before_widget' => '<div id="%1$s" class="widget-container %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); } add_action('widgets_init', 'add_my_sidebars');
Then add this simple code to your theme template (eg.
sidebar.php
) :<?php dynamic_sidebar('my-sidebar'); ?>
ID values should match.
Forum: Plugins
In reply to: [Plugin: Shailan Dropdown Menu Widget] Sub menu’s broken after updateHello VitalyB,
I don’t see a problem in your site. Can you tell which browser are you using?