- Posts: 26
COMMUNITY FORUM
- Forum
- Commercial Joomla Extensions & Templates
- Simple Image Gallery PRO
- SIG Pro thumbnails display in one column. Problem explained & solution provided.
Support requests should ONLY be directed there and require an active subscription plan.
This forum board is to be used for archive purposes and knowledge exchange ONLY.
SIG Pro thumbnails display in one column. Problem explained & solution provided.
- mojito
-
- Offline
- Junior Member
I couldnt work out why when code is either black or white that the display is different upon refreshing, how can this be. Must be load time of other content.
I was also told that float left would work, but i cant see it Has anyone tried that.
Please Log in or Create an account to join the conversation.
- domarquez
-
- Offline
- New Member
- Posts: 1
PLEASE SOME HELP
Please Log in or Create an account to join the conversation.
- Hans Palsson
-
- Offline
- New Member
- Posts: 8
I´m not sure if I´m going wrong here, but I tried bot the official fix in the original post and then a few sig-css fixes, but none solved my problem. Setting the thumbnail-cache time to 0 however, seems to have solved the problem. ???
/hans
Please Log in or Create an account to join the conversation.
- acijanos
-
- Offline
- Junior Member
It's possible that there is a conflict with your template - I'm using SigPro and everything here work fine - although - I've removed most of the Javascript calls at the start of the templates' index.php file.
Professional, Eco-Friendly Joomla! Web Design: www.cartanova.ca
Please Log in or Create an account to join the conversation.
- Nedzad Smajic
-
- Offline
- New Member
- Posts: 6
how can you sell a producut whitout a support??
i have same problem here for a long time ago, every thumb. in one column
Please Log in or Create an account to join the conversation.
- ivanzhelev
-
- Offline
- New Member
- Posts: 2
change "display:table" to "display:div" . "display:inline" is also working for me.
I hope this helps.
Please Log in or Create an account to join the conversation.
- Jill Clarke
-
- Offline
- Junior Member
- Posts: 27
In the file sigpro_default.css (or sigpro_yb.css)
change "display:table" to "display:div" . "display:inline" is also working for me.
I hope this helps.
These code changes seemed to work for me, but then when I do a refresh, the thumbnails change again - eg from four across to three across.
There is a complex interplay between
(a) sigpro_default.css
(b) your Joomla Template css,
(c) the thumbnail size specified in the the plugin setup,
(d) and the way you have asked for the gallery to be displayed within the article page.
I have
<div align="center">{gallery}all_the_photos{/gallery}</div>
Alas, I cannot control it, and to top it all off it displays completely differently in IE to what I am developing in - Firefox. Luckily for me my big problems are with Firefox, and the client is checking my work in IE! So she thinks it looks ok.
So this is how it goes - we buy the product (well it is quite cheap) and then perform real world testing on it, address all the issues in the forums, and hopefully next version will be a dream - I want it to come with dream instructions too.
Please Log in or Create an account to join the conversation.
- stefaanoyen
-
- Offline
- New Member
- Posts: 1
After trying all of your solutions (without result), I found a simple one of my own... I just put the thumbs (single one per gallery) in a table without a border. This way they display nicely in rows & columns. Hope it works for you all!
Please Log in or Create an account to join the conversation.
- metalmulisha
-
- Offline
- New Member
- Posts: 1
I use a table and insert the gallery into the table.
However as a suggestion the very first post suggested
table.contentpaneopen {width:100%;}
However with firefox when it loads pages it loads the foundation first then the content look at the way a page loads on a slower connection... this means that there is nothing to stretch the main body to size and this is why the table works when set to just below the maximum width of the content section.
What you could try is
table.contentpaneopen {width:550px;} ( changing 550px to the max width you have available )
However on dynamic width templates this is going to !@£$ with you!
But give it a go.
Regards
L
Please Log in or Create an account to join the conversation.
- vivek94401
-
- Offline
- New Member
- Posts: 6
Forum admin put a note in Nov 2007 and didn't bother to reply to any of the posts. That shows the level of support you get for paid software. $18+ is wasted, I guess.
Only solution that remotely worked for me is the solution from metalmulisha. When I put table.contentpaneopen {width:550px;}, the gallery is shown in 2 columns in Firefox. But, when I refresh it, it's back to single column ???
In IE, the problem is worse, the page is not displayed at all. Even before I played with CSS settings, IE7 can't display the page. It shows "Operation aborted" message. Just by adding {gallery} code, IE bombs. If I remove the gallery code, IE works ok, ofcourse without any picture even in a single column.
FYI: I use fs-gothenburg template in Joomla 1.0.12;
Any help from other users will be very much appreciated. Ofcourse, the guys that sold the software will not bother to reply.
Please Log in or Create an account to join the conversation.
- S#awomir Agata
-
- Offline
- New Member
- Posts: 3
1. I set thumbails to 150px and after that:
#content table.contentpaneopen div.sig_cont {
width: 200px;
height: 200px;
float: left;
}
Please Log in or Create an account to join the conversation.
- vivek94401
-
- Offline
- New Member
- Posts: 6
Today I used your solution to fix the thumbnail problem, unfortunately that doesn't work. With your code, IE displays two columns, but when I click on the image, the image is opened in a new window. Firefox displays single column, image is opened in the popup window in FF.
Please Log in or Create an account to join the conversation.
- Ricardo Da Cruz
-
- Offline
- New Member
- Posts: 7
Please Log in or Create an account to join the conversation.
- Brian Fabricatore
-
- Offline
- New Member
- Posts: 11
This evening I have tried many changes and I have found the solution that work well in my case...
In the file sigpro_default.css (or sigpro_yb.css) I have modified this row.../* --- Thumbnail styling --- */ .sig {clear:both;margin:0px;padding:12px;display:table;/*position:relative;*/}
... in this mode .../* --- Thumbnail styling --- */ .sig {clear:both;margin-right:auto;margin-left:auto;padding:0px;display:block;/*position:relative;*/ width: 100%;}
I hope this is usefull also for totoymola.
Ciao.
this is doing the trick for me now. nice one mate
So far, me too. Phew, I was about to give up on this one..
Please Log in or Create an account to join the conversation.
- Brian Fabricatore
-
- Offline
- New Member
- Posts: 11
Please Log in or Create an account to join the conversation.
- aldo
-
- Offline
- New Member
- Posts: 1
/* --- Thumbnail styling --- */
table.contentpaneopen {width:100%;}
.sig {clear:both;margin-right:auto;margin-left:auto;padding:0px;display:block;/*position:relative;*/
width: 100%;
border-style: none;
border-width: 0;
}
Please Log in or Create an account to join the conversation.
- acijanos
-
- Offline
- Junior Member
I've been having the same problem on a few sites. The layout worked fine in IE for me, but not in Firefox. Probably has something to do with what is mentioned above :
with firefox when it loads pages it loads the foundation first then the content look at the way a page loads on a slower connection... this means that there is nothing to stretch the main body to size and this is why the table works when set to just below the maximum width of the content section.
As demonstrated above, changing the .sig css class in sigpro_default.css also worked for me.
/* --- Thumbnail styling --- */
.sig {clear:both;margin-right:auto;margin-left:auto;padding:0px;display:block;/*position:relative;*/ width: 100%;}
Althought I made two adjustments :
(1) Changed padding back to 12px - better for layout
(2) In jwsigpro.php, I modified the code reading "+20" to "+0". This helped resolve some extra vertical spacing.
Gluck..
HC
Professional, Eco-Friendly Joomla! Web Design: www.cartanova.ca
Please Log in or Create an account to join the conversation.
- Thierry Schweitzer
-
- Offline
- New Member
- Posts: 10
Why the programmers are not bringing version 1.3 to our screens with this codes updated.
Why do I pay for a plugin, and then I have to code myself when my purpose of bying the Sigpro thing was NOT to code !!
One year without any updates
Please Log in or Create an account to join the conversation.
- Forum
- Commercial Joomla Extensions & Templates
- Simple Image Gallery PRO
- SIG Pro thumbnails display in one column. Problem explained & solution provided.