- Posts: 32
- Thank you received: 0
Text in newsflash
-
urosm
Inactive member - Topic Author
- Member
Less
More
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 1 month ago #11885
by ivan.milic
Replied by ivan.milic on topic Re: Text in newsflash
open modules\mod_hot_newsflash\tmpl\defaut.php
you will see:
$tabHeight = $imageHeight / $tabNumber;
$infoWidth = $moduleWidth - $tabWidth - $imageWidth - 10;
$imageWidth2 = $imageWidth + 8;
change them to:
$tabHeight = $imageHeight / $tabNumber;
$infoWidth = 0;
$imageWidth2 = $imageWidth + 8;
then you can see:
...
#featured .infotext {
width:'.$infoWidth.'px;
height:'.$imageHeight2.'px;
overflow:hidden;
}
...
insert display:none; like this:
...
#featured .infotext {
width:'.$infoWidth.'px;
height:'.$imageHeight2.'px;
overflow:hidden;
display:none;
}
...
you will see:
$tabHeight = $imageHeight / $tabNumber;
$infoWidth = $moduleWidth - $tabWidth - $imageWidth - 10;
$imageWidth2 = $imageWidth + 8;
change them to:
$tabHeight = $imageHeight / $tabNumber;
$infoWidth = 0;
$imageWidth2 = $imageWidth + 8;
then you can see:
...
#featured .infotext {
width:'.$infoWidth.'px;
height:'.$imageHeight2.'px;
overflow:hidden;
}
...
insert display:none; like this:
...
#featured .infotext {
width:'.$infoWidth.'px;
height:'.$imageHeight2.'px;
overflow:hidden;
display:none;
}
...
Please Log in to join the conversation.
Time to create page: 0.207 seconds