A. Jones
Forum Replies Created
-
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Appearing in a column instead of gridYay!
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Appearing in a column instead of gridSetting
overflow:visible;
should display your wrapped text.At this point, because the text is of different lengths, your grid is going to be off. This is the point where you want to set a style for the text itself. Set the height and if necessary, set the width.
div.postimage-title
{
height:50px; /*change to your desired height*/
width: 400px; /*change to your width here*/
}Once you find the right height, you may want to set overflow:hidden on this element to keep your grid correctly aligned in case the text does happen to overflow and throw your grid out of whack.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] squeezed thumbsYour images are resizing to 150px x 160px because of a 5px padding on the top and the bottom. By looking at it using developer tools and inspecting the element, it looks like this is a setting applied to all images and coming from your theme. I think the best way to deal with it is to disable this in your custom css. Go to Appearance and look for Custom CSS. If you don’t have that option, you can use a plugin like Simple Custom CSS. Paste in the following. This should only change image settings in the grid.
.postimage img
{
padding-top:0px!important;
padding-bottom:0px!important;
}Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Appearing in a column instead of gridI forgot to include the px after the width and height values.
The next step should be something like this.
[thumbnailgrid height=”260px” width=”500px”]With your own height and width filled in followed by ‘px’ for pixels.
In your case, try this:
[thumbnailgrid height=”280px” width=”460px” cat=’71’ posts=’40’ type=’post’ order_by=’author’]
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Appearing in a column instead of gridOK great! I can see what is happening now. Please move onto the next step & set the height & width of your images in the shortcode.
Don’t worry, if this doesn’t fix your issue, I will give you another upgrade. We just need to go through it step by step so that I can see what it happnening and make sure that everything doesn’t go awry. Thank you for being patient.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] AlignmentI’m not sure. Try this:
.thumbnailgridblock:after
{
clear:both;
}Or perhaps this?
.thumbnailgridblock:after {
visibility: hidden;
display: block;
font-size: 0;
content: ” “;
clear: both;
height: 0;
}Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Appearing in a column instead of gridPlease remove all custom css related to the thumbnail grid and follow the rest of the instructions, step by step to resolve this issue.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Appearing in a column instead of gridHi, could you follow the instructions that I posted please?
You don’t need to set the width and height in the style sheet any more.
Please follow the instructions exactly, please remove all of the styles from your custom styles and start over as instructed.
Please test your grid after each step.
Here they are again”
Do this step by step and test it before you proceed. If you have a problem, stop and come post here.
1) remove all of your custom css and upgrade your plugin. Let’s start from scratch. Your grid should now display as a grid, not as a single column. Width 150 x 150.
3) In your shortcode, set the height and width
[thumbnailgrid height=”280″ width=”460″]Your grid should now display 280 x 460
4) Then, make the changes that lechicbynadia suggested for the label.
THIS IS THE ONLY CSS THAT SHOULD BE IN YOUR CUSTOM CSSYour text should wrap after this.
div.postimage-title a
{text-decoration: none;
text-overflow:ellipsis;
display: block;
white-space: wrap;
overflow: hidden;
}Now, view your grid.
5) Now your grid may not be very grid like because the height of the title is going to be different depending on the length of the text in the title.
So add something like this to the style, obviously using the height that works best for you. This should create a fixed height available for your title.
div.postimage-title
{
height:430px;
}
Thanks!Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] AlignmentThere is another upgrade that will hopefully fix this. It is not an issue for me. I believe that WordPress is inserting a carriage return in front of every thumbnail except for the first one in a spot where a comment should be (these are not displayed). I removed the comments.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] 999 posts to a pageI’m marking this one as resolved.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] 999 posts to a pageNo problem! Thank you! Every issue helps me to make a better plugin.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] PaginationThe plugin wasn’t designed for this, but enough people have requested it that an extension will be available soon.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] 999 posts to a pageI am suspecting that you changed this in the wordpress settings. I suggest that you do this in the shortcode instead. If you do it this way, it shouldn’t normally change the way that it works in your theme. Look at the shortcode at the top of this example page.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] AlignmentI am seeing this in a couple of places. I see that something is being inserted into the code that is causing this issue and it only appears to be happening in some themes. I will try to fix it in my next update.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Appearing in a column instead of gridHi,
Do this step by step and test it before you proceed. If you have a problem, stop and come post here.
1) remove all of your custom css and upgrade your plugin. Let’s start from scratch.
3) In your shorcode, set the height and width
[thumbnailgrid height=”280″ width=”460″]4) Then, make the changes that lechicbynadia suggested for the label.
5) Now your grid may not be very grid like because the height of the title is going to be different depending on the length of the title.
So add something like this to the style, obviously using the height that works best for you.
div.postimage-title
{
height:430px;
}