Nick Murray
Forum Replies Created
-
Forum: Plugins
In reply to: [Jigoshop] Can't create a true crop sizeNo, because lets say your image size is set to 100px x 200px for the catalog image, and you upload an image that is 250px x 200px for your featured image.
– leaving “crop catalog image” unchecked is going to scale it and cause distortion
– checking off “crop catalog image” is going to crop it without a TRUE crop as in it will NOT make the image 100px x 200px it will make it fit within 100px x 200px so it will crop my 250px x 200px image to be 100px x 74px and then stretch it to fit 100px x 200px still causing distortion.
– A true crop would chop the image (loosing some of the image) to make it exactly the size you request.
I added a hook to make this work for me, but I have seen MANY user with this issue not know how to explain it.
Forum: Fixing WordPress
In reply to: Image Captions Making Content Disappearsounds weird, but removing the link from the photo being captioned fixed this issue for me on a theme.
I had the same issue and was able to resolve it by simply removing $wp_query = null; from my custom wp_query( see below) . However I believe it is recommended practice to have that line in there, so I hope that helps you correct the issue as way to many themes will have that line in there!
<?php $temp = $wp_query; $wp_query = null; $wp_query = new WP_Query( array( 'posts_per_page' => 1, 'paged' => $paged) ); ?>You need to follow the CSS of Chris’s Tutorial.
http://css-tricks.com/convert-menu-to-dropdown/Basically you are going to set the following in your main CSS:
nav select {
display: none;
}Then apply a media query at what ever size you want the nav to switch over:
@media (max-width: 960px) {
nav ul { display: none; }
nav select { display: inline-block; }
}