A. Jones
Forum Replies Created
-
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] How Can I CentreOk, Well that’s another way to do it! Thanks for letting me know.
The other setting should work, I don’t know why my settings didn’t work for you but I’m glad that you figured it out. The 2.1 upgrade now has a gridwidth setting that should do the same thing as the style sheet settings.
FYI, If you have any issues in the future, you will get a quicker response if you go to the web site.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Appearing in a column instead of gridLet me know if the update helped!
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Using original thumbnail dimensionsYou are welcome! 🙂
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Using original thumbnail dimensionsYes, but it might be a little complicated. Are they all the same size? They don’t look like it. If so, just set the width & height to that size. If not, I would set a fixed height and make the width auto. You can do that in the shortcode. That way your grid won’t be choppy, but your images will be proportionately correct.
Example:
In the shortcode, try something like this: height=”70px” width=”auto”.I love your paintings.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Appearing in a column instead of gridHi, take a look at the other thread. I’m going to be putting out an update shortly.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Column instead of gridOk, it’s possible that the custom css doesn’t work with your theme because I don’t see the change. It’s more likely that there was an error when you pasted it. It looks like I need to update the style sheet but if you can’t wait for a couple of days,
Try the below in the custom css. Make sure that you include the period before thumbnailgridcontainer.
.thumbnailgridcontainer
{
width:100%!important;
}Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Column instead of gridSure,
Can you give me a link to your site so that I can see what the issue is? Oh, never mind. I see it above.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] How Can I CentreTry this:
!important after width:500px
width:500px!important;
I looked at your site and tried this in the debugger and it did work. Keep me posted.
Thanks!
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Column instead of gridHi Marjolaine12 and lechicbynadia,
I am sorry if I wasn’t clear. You should not paste the style into your page. This will not work.
You would need to paste the code that follows using a custom CSS plugin to change the style. This is special code used to allow the appearance of an element on a web page.
Although your theme may have a customization option to add custom CSS, I use a plugin called Simple Custom CSS plugin. (https://wordpress.org/plugins/simple-custom-css/)
You should add this to your WordPress installation. The best way to do this is by clicking on “Plugins”, “Add New” and searching for “Simple Custom CSS Plugin”.
Once this plugin is installed, you will see a new option under “Appearance” for “Custom Css”. Choose this option, enter the below pasted code and click on the Save button.
.thumbnailblock {
width: 170px!important;
}Let me know if this is not clear and I will try to find a more visual way to represent this for you.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Column instead of gridLet me know if that doesn’t resolve your issue!
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Column instead of gridYou will need a custom css editor. Sometimes they are included with your them. If not, I use the Simple Custom CSS plugin. If necessary, adjust the below width to your satisfaction.
copy and paste the code below
.thumbnailblock {width: 170px!important;
}end copy and paste
If the column is centering and you don’t want it to center,
copy and paste the code below
.thumbnailblock {
float:left;
width: 170px!important;
}end copy and paste
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Remove TextLet me know how it goes!
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Remove TextYou can disable the caption by customizing it’s style.
Your theme may have a custom css option. If not, you can also install a custom css plugin like this one: http://wordpress.org/plugins/simple-custom-css/
Paste the below code into your custom css editor and save it.
.postimage-title
{
display:none;
}Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Page thumbnailsHi again,
I tested this. I don’t have featured images on my pages but I was able to get thumbnails (without images).
[thumbnailgrid post_type=”page” cat=”109″]
post_type should do it for you!
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Page thumbnailsHi,
My site is down right now, but I just wanted to check and make sure that you were setting
post_type=”page”?