dzuzo
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Enigma] Style individual widgetHi @web2033,
You can style a widgets depending on what type of widget it is. example .widget_text will target all text-widgets. You can also style them individually by using their unique IDs
id=”%1$s” this gives the widgets their own ID. Classes are supposed to be the same.<blockquote><?php $args = array( 'name' => __( 'Sidebar name', 'theme_text_domain' ), 'id' => 'unique-sidebar-id', 'description' => '', 'class' => '', 'before_widget' => '<li id="%1$s" class="widget %2$s">', 'after_widget' => '', 'before_title' => '<h2 class="widgettitle">', 'after_title' => '</h2>' ); ?>More information:
http://codex.ww.wp.xz.cn/Function_Reference/register_sidebarAll the best 😉
Forum: Fixing WordPress
In reply to: Installed WordPress not OperationalHi @ritvikc,
look at your functions.php file and make sure the are NO spaces at the top or bottom.
All the best! 🙂
Forum: Plugins
In reply to: [Image Watermark] add watermark on already uploaded photoHi,
how does it work when you follow the screenshots on the ling below?
https://ww.wp.xz.cn/plugins/image-watermark/screenshots/If this does not work for you, you can also try Easy Watermark:
https://ww.wp.xz.cn/plugins/easy-watermark/Manual how to set up the plugin after installation:
http://www.wpbeginner.com/plugins/how-to-automatically-add-watermark-to-images-in-wordpress/I wish you a great day.