RomanKur
Forum Replies Created
-
same problem ??
Forum: Plugins
In reply to: [Wordpress Content Slide] Error – Notice: Undefined indexI found the solution. In my wp-config.php there was enabled errors like
define('WP_DEBUG', true); @ini_set('display_errors', 1);
so I just replaced it to code below and error disappeared
define('WP_DEBUG', false);
Forum: Fixing WordPress
In reply to: HTTP Error 500 (Internal Server Error): Whole blog is downI spent 2 days to found out the same issue on https://kuritsyna.ru site.
The reason was very easy – I forgot to close apostrophe like:
if ... then '...'
So to understand where the reason of 500 error is I suggest go to wp-config.php in the root of your website and add there two lines:
define('WP_DEBUG', true); @ini_set('display_errors', 1);
After that you can see exactly place which linked with 500 error.
After fixing I suggest return it how it was by default (only one line)
define('WP_DEBUG', false);
Forum: Themes and Templates
In reply to: [Klasik] Klasik Layout ProblemHi. Are you sure it’s a theme issue, not the gallery?
I would recommend to look at plugin which manages the catalog.Do not know if I described it well… The “frame” 980×653 work perfect. By “2nd line” I mean that INSIDE of that the 2nd line appears (with scrolling). So if I scroll down in that fixed frame and go to beginning I find there my last picture.
So for me it looks like plugin issue, not CSS.
By the way, I found out I don’t have such issue with galleries where 3 pictures only (like here – https://kuritsyna.ru/?page_id=527). Maybe it links with big galleries? Just an idea, probably it’ll helpBenedikt, FYI, the same problem with FF v24.0, just have checked that ??
Hi Benedikt and thanks for answer.
Yes, I agree it works bad maybe with IE only (at least v10), but still…
I don’t think it’s CSS (though CSS in BMo Expro plugin) because overall frame of gallery looks perfect as I need.The problem happens inside of fixed frame (980×653): last pictures in that fixed frame always goes to 2nd line for some reason.
P.S. And another feedback – how about add max-height and max-width in admin panel?
Forum: Themes and Templates
In reply to: [Klasik] Left and right padding problemIn /wp-content/themes/klasik/css/skeleton.css need to change
.column, .columns { float: left; min-height: 1px; padding: 0 15px; position: relative;}
to
.column, .columns { float: left; min-height: 1px; padding: 0 0px; position: relative;}
Forum: Themes and Templates
In reply to: Left and right padding problemIn /wp-content/themes/klasik/css/skeleton.css need to change
.column, .columns { float: left; min-height: 1px; padding: 0 15px; position: relative;}
to
.column, .columns { float: left; min-height: 1px; padding: 0 0px; position: relative;}
It seems support is dead here… Though I find out the solution:
if(is_front_page()) { if(function_exists('wp_content_slider')) { wp_content_slider(); } } elseif(is_page('Портфолио')) { if(function_exists('BMo_scrollGallery')) do_shortcode('[BMo_scrollGallery id="3"]'); } else ...
Forum: Plugins
In reply to: [BMo Expo - a Wordpress and NextGEN Gallery plugin] How to remove border?I guess I find out:
In bmo-expo/css/themes/default.css look at max-height and max-width. By default it was 95% (what a stupid idea). So it should be:div.bmo_the_gallery div.bmo_the_gallery_image img, div.bmo_the_gallery div.bmo_the_gallery_image a img{ background: url("../imgs/ajax-loader.gif") no-repeat scroll center center transparent; /*styles to center images*/ vertical-align:middle; display:inline; max-height:100%; /*dont use padding or margins here, use the % width and hight to reduce the size of the inner images*/ max-width:100%;