- Posts: 1
- Thank you received: 0
Only one image
- David Ponce
-
Topic Author
- Offline
- Fresh Boarder
-
Less
More
11 years 3 months ago #6750
by David Ponce
Only one image was created by David Ponce
Hi
I have tried 2,3,4,5,6 images per frame, I have set load jquery on/off. Also I am pretty sure of the path of logos, in fact I look only one of them.
I am working with Joomla 2.5
Finally, I have read other posts with the same topic and I couldn't find anything useful for me.
Please help me asap.
David
I have tried 2,3,4,5,6 images per frame, I have set load jquery on/off. Also I am pretty sure of the path of logos, in fact I look only one of them.
I am working with Joomla 2.5
Finally, I have read other posts with the same topic and I couldn't find anything useful for me.
Please help me asap.
David
Please Log in or Create an account to join the conversation.
- David Edworthy
-
- Offline
- Fresh Boarder
-
Less
More
- Posts: 2
- Thank you received: 1
11 years 4 weeks ago #7373
by David Edworthy
Replied by David Edworthy on topic Re: Only one image
I found that the default.php file is missing a "float:left;" style.
Here is the file location /modules/mod_ot_clientlogo/tmpl/default.php
Find this:
and change to this:
Worked for me
Here is the file location /modules/mod_ot_clientlogo/tmpl/default.php
Find this:
Code:
<style type="text/css">
.ot-items<?php echo $module->id; ?> .ot-item{
width: <?php echo $sliderWidth;?>px;
height: <?php echo $sliderHeight;?>px;
}
.ot-items<?php echo $module->id; ?> .ot-item .imgitem{
width: <?php echo $itemWidth;?>px;
height: <?php echo $itemHeight;?>px;
text-align: center;
}
</style>
and change to this:
Code:
<style type="text/css">
.ot-items<?php echo $module->id; ?> .ot-item{
width: <?php echo $sliderWidth;?>px;
height: <?php echo $sliderHeight;?>px;
}
.ot-items<?php echo $module->id; ?> .ot-item .imgitem{
width: <?php echo $itemWidth;?>px;
height: <?php echo $itemHeight;?>px;
text-align: center;
float:left;
}
</style>
Worked for me

The following user(s) said Thank You: Trung Duong
Please Log in or Create an account to join the conversation.
Time to create page: 0.187 seconds