mysterysolver
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Listings] Sidebar problemsThanks you
Forum: Plugins
In reply to: [IMPress Listings] Sidebar problemsanyone?
Forum: Fixing WordPress
In reply to: how to make unique header images for each category and posts?Ok i figured it out by adding this code in funtions.php
/** * Adds category classes to the array of body classes - in single post only. * */ function add_category_body_classes( $classes ) { if ( is_single() ) { global $post; $cats = get_the_category($post->ID); foreach( $cats as $cat ) { $classes[] = 'category-' . $cat->slug; } } return $classes; } add_filter( 'body_class', 'add_category_body_classes' );now i like to make the header images responsive , any idea ?
Forum: Fixing WordPress
In reply to: how to make unique header images for each category and posts?[ Moderator note: No short links in forums posts please . ]
Ok,
this is the link of the category news with the header image
http://unitednews.sr/category/news/Here you have a post in the category news
http://unitednews.sr/news/kris-dcosta-interviews-brigitte-kuchler/
as you can see the header image does not appearForum: Fixing WordPress
In reply to: How to make custom header image responsivewhat do you mean by html image ?
can you show me a example ?Forum: Fixing WordPress
In reply to: How to make custom header image responsiveif i make the background size 100% i get a huge white space under the header image
Forum: Plugins
In reply to: [Custom Header Images] Does it work with Woo theme Canvas?I am also interested in this question as the canvas theme is fully responsive but the header image does not resize on mobile devices ,
how can we make the header image responsive ?Forum: Plugins
In reply to: All in one seo plugin home title not workingAnyone please help
Forum: Plugins
In reply to: is there a coupon plugin?Forum: Plugins
In reply to: is there a coupon plugin?Forum: Plugins
In reply to: How long does it take for a new plugin to be approved?Hello,
At this page http://wordpress.org/extend/plugins/add/
In the last field it says plugin url,what do you fill in there?
the homepage of the plugin or the url where the reviewer can download the rar file of your plugin?