Page 1 of 1
Problem description
Posted: 06 Sep 2011, 22:24
by T-Cyclo
Hello,
I installed the update to 2.0.0 by Phoca Download one for joomla 1.7.
With version 2.1.0 and 2.1.1 by tonight and I'm left with a problem does not exist before.
The display of the descriptions is not shifted to the right in the overlib and Download, (as an example: the number of downloads can be found under the word "Download" instead of being shifted to the right.
V 2.0
V2.1.1
Thank you for your help
Re: Problem description
Posted: 06 Sep 2011, 23:47
by Jan
Hi, this is because tables were changed to divs, in such case (some of the title is long), just set the width in CSS to some higher value:
Code: Select all
#phoca-dl-category-box .pd-filesize-txt,
#phoca-dl-file-box .pd-filesize-txt,
#phoca-dl-category-box .pd-version-txt,
#phoca-dl-file-box .pd-version-txt,
#phoca-dl-category-box .pd-license-txt,
#phoca-dl-file-box .pd-license-txt,
#phoca-dl-category-box .pd-author-txt,
#phoca-dl-file-box .pd-author-txt,
#phoca-dl-category-box .pd-email-txt,
#phoca-dl-file-box .pd-email-txt,
#phoca-dl-category-box .pd-date-txt,
#phoca-dl-file-box .pd-date-txt,
#phoca-dl-category-box .pd-downloads-txt,
#phoca-dl-file-box .pd-downloads-txt{
font-weight: bold;
clear:left;
margin:5px 0;
float:left;
width: 100px;
}
set the width to some higher value.
Jan
Re: Problem description
Posted: 07 Sep 2011, 22:18
by T-Cyclo
Hi,
Thank you it works fine now.
Another thing: How to reduce the height below the button "Details" and "Download (part of file)
See here:
http://www.t-cyclo.com/index.php/fr/par ... -vcmb-8h00
Cordially
Titi
Re: Problem description
Posted: 12 Sep 2011, 17:18
by Jan
Hi, there can be a lot of ways:
- in CSS - to add to the blocks below display:none rules
- or to remove them in the code directly or in the layout
Jan