- Posts: 5
COMMUNITY FORUM
- Forum
- Commercial Joomla Extensions & Templates
- Simple Image Gallery PRO
- Thumbnail line issue in SIG PRO for Joomla 1.5
Please note that official support for commercial extensions & templates is provided in the Subscriber Help Desk.
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.
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.
Thumbnail line issue in SIG PRO for Joomla 1.5
- Bjarne Santesson
- Topic Author
- Offline
- New Member
Less
More
15 years 2 months ago #28020
by Bjarne Santesson
Thumbnail line issue in SIG PRO for Joomla 1.5 was created by Bjarne Santesson
Hi,
I have been searching the forum like crazy and have only found solution for Mambot.
The issue I've got is that the thumbnails is not lined with each other. Every thumbnail pops-down one row.
It seems to be a hidden box for each thumbnail that spread out to the end of line. I can see white box for each of my thumbnails on my grayed background.
Please, is there any Joomla solution availiable?
Regards
//Bjarne
I have been searching the forum like crazy and have only found solution for Mambot.
The issue I've got is that the thumbnails is not lined with each other. Every thumbnail pops-down one row.
It seems to be a hidden box for each thumbnail that spread out to the end of line. I can see white box for each of my thumbnails on my grayed background.
Please, is there any Joomla solution availiable?
Regards
//Bjarne
Please Log in or Create an account to join the conversation.
- Katia
- Offline
- Platinum Member
Less
More
- Posts: 4696
15 years 2 months ago #28021
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: Thumbnail line issue in SIG PRO for Joomla 1.5
Please provide me with a link to your site.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Bjarne Santesson
- Topic Author
- Offline
- New Member
Less
More
- Posts: 5
15 years 2 months ago #28022
by Bjarne Santesson
Replied by Bjarne Santesson on topic Re: Thumbnail line issue in SIG PRO for Joomla 1.5
Hi,
Here is an temporary link:
www.rtsab.com/index.php?option=com_content&view=article&id=51%3Atemp&catid=16%3Aom-rts&Itemid=27
RGDS
//Bjarne
Here is an temporary link:
www.rtsab.com/index.php?option=com_content&view=article&id=51%3Atemp&catid=16%3Aom-rts&Itemid=27
RGDS
//Bjarne
Please Log in or Create an account to join the conversation.
- Katia
- Offline
- Platinum Member
Less
More
- Posts: 4696
15 years 2 months ago #28023
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: Thumbnail line issue in SIG PRO for Joomla 1.5
I cannot even see thumbnails...
Is your image path written correct?
Is your plugin enabled?
Is your image path written correct?
Is your plugin enabled?
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Bjarne Santesson
- Topic Author
- Offline
- New Member
Less
More
- Posts: 5
15 years 2 months ago - 15 years 2 months ago #28024
by Bjarne Santesson
Replied by Bjarne Santesson on topic Re: Thumbnail line issue in SIG PRO for Joomla 1.5
Oh, sorry! The plugin where set to registered users only. It's now fixt and you should be abel to view it.
www.rtsab.com/index.php?option=com_content&view=article&id=51%3Atemp&catid=16%3Aom-rts&Itemid=27
rgds
//Bjarne
www.rtsab.com/index.php?option=com_content&view=article&id=51%3Atemp&catid=16%3Aom-rts&Itemid=27
rgds
//Bjarne
Please Log in or Create an account to join the conversation.
- Yiota
- Visitor
15 years 2 months ago #28025
by Yiota
Replied by Yiota on topic Re: Thumbnail line issue in SIG PRO for Joomla 1.5
Your template's CSS overwrites the plugins and that's why you have this problem.
Go to the plugins CSS file and find the following class:
li.sig-block {
background:#FFFFFF none repeat scroll 0 0 !important;
float:left (add !important);
margin:5px;
padding:0 (add !important);
}
Go to the plugins CSS file and find the following class:
li.sig-block {
background:#FFFFFF none repeat scroll 0 0 !important;
float:left (add !important);
margin:5px;
padding:0 (add !important);
}
Please Log in or Create an account to join the conversation.
- Bjarne Santesson
- Topic Author
- Offline
- New Member
Less
More
- Posts: 5
15 years 2 months ago #28026
by Bjarne Santesson
Replied by Bjarne Santesson on topic Re: Thumbnail line issue in SIG PRO for Joomla 1.5
Hi
I have now change template.css as follow:
/* Thumbnail */
li.sig-block { float:left; background:none!important; margin:2px!important; padding:0!important; border:none!important; }
Where this correct, because it didn't help :(
Regards
//Bjarne
I have now change template.css as follow:
/* Thumbnail */
li.sig-block { float:left; background:none!important; margin:2px!important; padding:0!important; border:none!important; }
Where this correct, because it didn't help :(
Regards
//Bjarne
Please Log in or Create an account to join the conversation.
- Katia
- Offline
- Platinum Member
Less
More
- Posts: 4696
15 years 2 months ago - 15 years 2 months ago #28027
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: Thumbnail line issue in SIG PRO for Joomla 1.5
This (Yiota's solution):
li.sig-block {
background:#FFFFFF none repeat scroll 0 0 !important;
float:left (add !important);
margin:5px;
padding:0 (add !important);
}
is not this(what you have written):
li.sig-block { float:left; background:none!important; margin:2px!important; padding:0!important; border:none!important; }
Please do as Yiota said.
li.sig-block {
background:#FFFFFF none repeat scroll 0 0 !important;
float:left (add !important);
margin:5px;
padding:0 (add !important);
}
is not this(what you have written):
li.sig-block { float:left; background:none!important; margin:2px!important; padding:0!important; border:none!important; }
Please do as Yiota said.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Bjarne Santesson
- Topic Author
- Offline
- New Member
Less
More
- Posts: 5
15 years 2 months ago #28028
by Bjarne Santesson
Replied by Bjarne Santesson on topic Re: Thumbnail line issue in SIG PRO for Joomla 1.5
I'm Sorry.
Now when I modified the correct template file and with the correct values at the right place it worked much better. :-\
This where my first css modification
Thanks for your help both of you.
Regards
Bjarne
Now when I modified the correct template file and with the correct values at the right place it worked much better. :-\
This where my first css modification
Thanks for your help both of you.
Regards
Bjarne
Please Log in or Create an account to join the conversation.
- Forum
- Commercial Joomla Extensions & Templates
- Simple Image Gallery PRO
- Thumbnail line issue in SIG PRO for Joomla 1.5