Forum Replies Created
- Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236
sneeux
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220hi
add this
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%)to .nav ul in style.css
AdvertismentDeprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236sneeux
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220wait… i can’t recognize, are you using the minimatica gallery view or those from wordpress itself?
in second case everything i wrote in the post before is right.
in the first case you have to change #container width to 1200 in style.css then in function.php straight above the line:
// If 3 images have been shown, end the image row and open a new one
there is a line :
<?php if( !( $counter % 3 ) && ( $attachment != end( $attachments ) ) ) :
you have to change 3 with 5 there
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236sneeux
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220delete… or my preferred way, comment it out
like this <? /* php get_sidebar(); */ ?>in
loop-single.php
loop-page.php(and perhaps others…)
then in style.css change 700px with 920px (i made a mistake in the previous post, it should be 920px… )
in
#content {
float:left;
width:700px;
margin:0;
margin-right:20px;
}Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236sneeux
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220you can’t have more than 3 rows without removing the sidebar.
because there is no space for more than 3.
5 simply dont fit…if you remove the sidebar and set the width of #content to 940px then you will get 5 rows automatically.
or… you make the thumbnails smaller…
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236sneeux
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220actually all what you had to do, was to move
<?php get_sidebar( ‘footer’ ); ?>in between
</nav><!– #access –>
and
</footer><!– #footer –>
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236sneeux
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220edit the Footer (footer.php) this way:
(which only change the position of <?php get_sidebar( ‘footer’ ); ?>)<?php
/**
* The footer Template
*
* @package WordPress
* @subpackage minimatica
* @since Minimatica 1.0
*/
?>
<footer id=”footer”>
<nav id=”access” role=”navigation”>
<?php wp_nav_menu( array( ‘theme_location’ => ‘primary_nav’, ‘container_id’ => ‘primary-nav’, ‘container_class’ => ‘nav’, ‘fallback_cb’ => ‘minimatica_nav_menu’ ) ); ?>
</nav><!– #access –>
<?php get_sidebar( ‘footer’ ); ?>
</footer><!– #footer –>
</div><!– #wrapper –>
<?php wp_footer(); ?>
</body>
</html>Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236sneeux
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220I think changing from 1 to 0 in ‘ignore_sticky_posts’ => 1 in loop-slider.php should do the trick
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/html/dev/wp/wp-includes/formatting.php on line 4371Notice: Trying to get property 'comment_author_email' of non-object in /var/html/dev/wp/wp-content/plugins/fv-gravatar-cache/fv-gravatar-cache.php on line 236sneeux
ParticipantWarning: Cannot modify header information - headers already sent by (output started at /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php:340) in /var/html/dev/wp/wp-content/plugins/crayon-syntax-highlighter/crayon_wp.class.php on line 220Hi again
i found out how to do it on myself.
here is my solution.
1:
remove “display:none;” (or comment it out) from style.css in:.kwicks .post .entry-container {
position:absolute;
bottom:0;
padding:5px;
margin:0px;
background:url(images/entry.png);
width:600px;
display:none;2:
in ../wp-content/themes/minimatica/scripts/minimatica.jscomment out (or remove) the following four lines:
var container = jQuery(‘.entry-container’, slide);
container.stop(true, true).delay(500).fadeIn(500);
var container = jQuery(‘.entry-container’, slide);
container.stop(true, true).hide(500);my minimatica.js looks afterwards like this:
——————————————–
function slide() {
jQuery(‘.kwicks’).kwicks({
max : 605
});
jQuery(‘.slide’).bind({
mouseenter: function() {
var slide = jQuery(this);
var opacity = jQuery(‘.opacity’, slide);
//var container = jQuery(‘.entry-container’, slide);
opacity.stop(true, true).fadeOut(500);
//container.stop(true, true).delay(500).fadeIn(500);
},
mouseleave: function() {
var slide = jQuery(this);
var opacity = jQuery(‘.opacity’, slide);
//var container = jQuery(‘.entry-container’, slide);
opacity.stop(true, true).fadeIn(500);
//container.stop(true, true).hide(500);
}
});
}jQuery().ready(function() {
slide();
jQuery(‘.nav a’).bind({
mouseenter:function() {
jQuery(this).animate({
marginTop: -5
});
},
mouseleave:function() {
jQuery(this).animate({
marginTop: 0
});
}
});
jQuery(‘.entry-tags a’).bind({
mouseenter:function() {
jQuery(this).animate({
top: -2
}, 100);
},
mouseleave:function() {
jQuery(this).animate({
top: 0
}, 100);
}
});
});
————————————————–that’s all ๐ it works perfectly to me