- Posts: 3
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.
- S#awomir Agata
- Offline
- New Member
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.